| otVariantByteArray = &H0 | 0 | Variant byte array, VT_ARRAY | VT_UI1 |
| otByteArray = &H1 | 1 | ByteArray object |
| otString = &H2 | 2 | String , VT_BSTR |
| otMultiByteString = &H3 | 3 | MultiByte string, VT_BSTR |
'OutputTypes - begin Public Const otVariantByteArray = &H0 'Variant byte array, VT_ARRAY | VT_UI1 Public Const otByteArray = &H1 'ByteArray object Public Const otString = &H2 'String , VT_BSTR Public Const otMultiByteString = &H3 'MultiByte string, VT_BSTR 'OutputTypes - end
'OutputTypes - begin Public Const otVariantByteArray As Long = &H0 'Variant byte array, VT_ARRAY | VT_UI1 Public Const otByteArray As Long = &H1 'ByteArray object Public Const otString As Long = &H2 'String , VT_BSTR Public Const otMultiByteString As Long = &H3 'MultiByte string, VT_BSTR 'OutputTypes - end
Public Enum OutputTypes otVariantByteArray = &H0 'Variant byte array, VT_ARRAY | VT_UI1 otByteArray = &H1 'ByteArray object otString = &H2 'String , VT_BSTR otMultiByteString = &H3 'MultiByte string, VT_BSTR End Enum 'OutputTypes
//OutputTypes - begin var otVariantByteArray = 0x0; //Variant byte array, VT_ARRAY | VT_UI1 var otByteArray = 0x1; //ByteArray object var otString = 0x2; //String , VT_BSTR var otMultiByteString = 0x3; //MultiByte string, VT_BSTR //OutputTypes - end
// OutputTypes
typedef [helpcontext(0x20053), helpstring("Define output types for conversion and compress/decompress functions")]
enum OutputTypes{
[helpcontext(0x20053), helpstring("Variant byte array, VT_ARRAY | VT_UI1")]
otVariantByteArray = 0x0,
[helpcontext(0x20053), helpstring("ByteArray object")]
otByteArray = 0x1,
[helpcontext(0x20053), helpstring("String , VT_BSTR")]
otString = 0x2,
[helpcontext(0x20053), helpstring("MultiByte string, VT_BSTR")]
otMultiByteString = 0x3
} OutputTypes;