include: Annotate MIDL_user_allocate with __WINE_(ALLOC_SIZE|DEALLOC|MALLOC).
This commit is contained in:
parent
c2afbc8c04
commit
f27ac1bb77
1 changed files with 1 additions and 1 deletions
|
@ -82,8 +82,8 @@ typedef unsigned char boolean;
|
|||
#define midl_user_free MIDL_user_free
|
||||
#define midl_user_allocate MIDL_user_allocate
|
||||
|
||||
void * __RPC_USER MIDL_user_allocate(SIZE_T);
|
||||
void __RPC_USER MIDL_user_free(void *);
|
||||
void * __RPC_USER MIDL_user_allocate(SIZE_T) __WINE_ALLOC_SIZE(1) __WINE_DEALLOC(MIDL_user_free) __WINE_MALLOC;
|
||||
|
||||
#define NdrFcShort(s) (unsigned char)(s & 0xff), (unsigned char)(s >> 8)
|
||||
#define NdrFcLong(s) (unsigned char)(s & 0xff), (unsigned char)((s & 0x0000ff00) >> 8), \
|
||||
|
|
Loading…
Add table
Reference in a new issue