The [string] attribute is only valid on byte, char and wchar_t types,
so replace "unsigned short" by "WCHAR".
This commit is contained in:
parent
f6daf49061
commit
3f912e048e
|
@ -91,7 +91,7 @@ interface ObjectRpcBaseTypes
|
||||||
|
|
||||||
typedef struct tagSTRINGBINDING {
|
typedef struct tagSTRINGBINDING {
|
||||||
unsigned short wTowerId;
|
unsigned short wTowerId;
|
||||||
[string] unsigned short aNetworkAddr[];
|
[string] WCHAR aNetworkAddr[];
|
||||||
} STRINGBINDING;
|
} STRINGBINDING;
|
||||||
|
|
||||||
const unsigned short COM_C_AUTHZ_NONE = 0xffff;
|
const unsigned short COM_C_AUTHZ_NONE = 0xffff;
|
||||||
|
@ -99,7 +99,7 @@ interface ObjectRpcBaseTypes
|
||||||
typedef struct tagSECURITYBINDING {
|
typedef struct tagSECURITYBINDING {
|
||||||
unsigned short wAuthnSvc;
|
unsigned short wAuthnSvc;
|
||||||
unsigned short wAuthzSvc;
|
unsigned short wAuthzSvc;
|
||||||
[string] unsigned short aPrincName[];
|
[string] WCHAR aPrincName[];
|
||||||
} SECURITYBINDING;
|
} SECURITYBINDING;
|
||||||
|
|
||||||
typedef struct tagDUALSTRINGARRAY {
|
typedef struct tagDUALSTRINGARRAY {
|
||||||
|
|
Loading…
Reference in New Issue