| 
| #define  | READBANKDATA(_Type,  _Ptr,  _Size)   		AK::ReadBankData<_Type>( _Ptr ) | 
|   | Read and return bank data of a given type, incrementing running pointer and decrementing block size for debug tracking purposes  더 자세히 ...
  | 
|   | 
| #define  | READVARIABLESIZEBANKDATA(_Type,  _Ptr,  _Size)   		AK::ReadVariableSizeBankData<_Type>( _Ptr ) | 
|   | 
| #define  | READBANKSTRING(_Ptr,  _Size,  _out_StringSize)   		AK::ReadBankStringUtf8( _Ptr, _out_StringSize ) | 
|   | 
| #define  | SKIPBANKDATA(_Type,  _Ptr,  _Size)   		( _Ptr ) += sizeof( _Type ) | 
|   | Skip over some bank data of a given type, incrementing running pointer and decrementing block size for debug tracking purposes  더 자세히 ...
  | 
|   | 
| #define  | SKIPBANKBYTES(_NumBytes,  _Ptr,  _Size)   		( _Ptr ) += _NumBytes; | 
|   | Skip over some bank data by a given size in bytes, incrementing running pointer and decrementing block size for debug tracking purposes  더 자세히 ...
  | 
|   | 
| #define  | COPYBANKSTRING_CHAR(_Ptr,  _Size,  _OutPtr,  _MaxPtrSize) | 
|   | Read and copy to a null-terminated UTF-8 string conversion from string stored in bank.  더 자세히 ...
  | 
|   | 
| #define  | COPYBANKSTRING_OSCHAR(_Ptr,  _Size,  _OutPtr,  _MaxPtrSize) | 
|   | Read and copy to a null-terminated OSChar string conversion from string stored in bank.  더 자세히 ...
  | 
|   | 
| #define  | COPYBANKSTRING_WCHAR(_Ptr,  _Size,  OutPtr,  _MaxPtrSize) | 
|   | Read and copy to a null-terminated wchar_t string conversion from string stored in bank.  더 자세히 ...
  | 
|   | 
| #define  | GETBANKDATABIT(_Data,  _Shift)   	(((_Data) >> (_Shift)) & 0x1) | 
|   | 
| #define  | CHECKBANKDATASIZE(_DATASIZE_,  _ERESULT_) | 
|   | Helper macro to determine whether the full content of a block of memory was properly parsed  더 자세히 ...
  | 
|   |