Please enter search query.
Search <book_title>...
Veritas NetBackup™ DataStore SDK Programmer's Guide for XBSA 1.1.0
Last Published:
2021-01-01
Product(s):
NetBackup (9.0.0.1, 9.0)
- Introduction to NetBackup XBSA
- How to set up the SDK
- Using the NetBackup XBSA interface
- NetBackup XBSA data structures
- NetBackup XBSA environment
- XBSA sessions and transactions
- Creating a NetBackup XBSA application
- How to build an XBSA application
- How to run a NetBackup XBSA application
- API reference
- Function calls
- Function specifications
- Type definitions
- Process flow and troubleshooting
- How to use the sample files
- Support and updates
- Appendix A. Register authorized locations
Type definitions
The following type definitions are provided for use within the NetBackup XBSA interfaces.
Table: XBSA Type Definitions
Data Type | Type Name | Example Type Definition |
---|---|---|
16-bit Integer | BSA_Int16 | typedef short BSA_Int16; |
32-bit Integer | BSA_Int32 | typedef int BSA_Int32; |
64-bit Integer | BSA_Int64 | typedef struct { BSA_Int32 left; BSA_Int32 right; } BSA_Int64; |
16-bit Unsigned Integer | BSA_UInt16 | typedef unsigned short BSA_UInt16; |
32-bit Unsigned Integer | BSA_UInt32 | typedef unsigned int BSA_UInt32; |
64-bit Unsigned Integer | BSA_UInt 64 | typedef struct { |
BSA_UInt32 left; | ||
BSA_UInt32 right; | ||
} BSA_UInt64; | ||
Shared Memory Buffer reference | BSA_ShareId | <Not_Used> |