Commit b831594b authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

include: Include windef.h and packing directives in rpcasync.h when needed.

parent 4ed25766
...@@ -18,6 +18,13 @@ ...@@ -18,6 +18,13 @@
#ifndef __WINE_RPCASYNC_H #ifndef __WINE_RPCASYNC_H
#define __WINE_RPCASYNC_H #define __WINE_RPCASYNC_H
#ifdef RPC_NO_WINDOWS_H
# include <windef.h>
#endif
#ifdef __RPC_WIN64__
# include <pshpack8.h>
#endif
typedef struct tagRPC_ERROR_ENUM_HANDLE typedef struct tagRPC_ERROR_ENUM_HANDLE
{ {
...@@ -154,6 +161,10 @@ typedef struct _RPC_ASYNC_STATE ...@@ -154,6 +161,10 @@ typedef struct _RPC_ASYNC_STATE
#define RpcAsyncGetCallHandle(async) (((PRPC_ASYNC_STATE)async)->RuntimeInfo) #define RpcAsyncGetCallHandle(async) (((PRPC_ASYNC_STATE)async)->RuntimeInfo)
#ifdef __RPC_WIN64__
# include <poppack.h>
#endif
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment