rpc.h 1.85 KB
Newer Older
1
/*
Huw D M Davies's avatar
Huw D M Davies committed
2 3
 *    RPC interface
 *
4 5 6 7 8 9 10 11 12 13 14 15 16 17
 * Copyright (C) the Wine project
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Huw D M Davies's avatar
Huw D M Davies committed
19
 */
20

21 22
#ifndef RPC_NO_WINDOWS_H
# ifdef __WINESRC__
23 24 25
#  ifndef RC_INVOKED
#   include <stdarg.h>
#  endif
26
#  include <windef.h>
27
#  include <winbase.h>
28 29 30
# else
#  include <windows.h>
# endif
31 32
#endif

33 34 35
#ifndef __WINE_RPC_H
#define __WINE_RPC_H

36
#if defined(__powerpc__) || defined(_MAC) /* ? */
37
# define __RPC_MAC__
38
 /* Also define __RPC_WIN32__ to ensure compatibility */
39
# define __RPC_WIN32__
40
#elif defined(_WIN64)
41
# define __RPC_WIN64__
42
#else
43
# define __RPC_WIN32__
44
#endif
Ove Kaaven's avatar
Ove Kaaven committed
45

46 47
#include <basetsd.h>

48
#define __RPC_FAR
49 50 51 52
#define __RPC_API  __stdcall
#define __RPC_USER __stdcall
#define __RPC_STUB __stdcall
#define RPC_ENTRY  __stdcall
53
#define RPCRTAPI
Huw D M Davies's avatar
Huw D M Davies committed
54 55
typedef long RPC_STATUS;

56
typedef void* I_RPC_HANDLE;
Huw D M Davies's avatar
Huw D M Davies committed
57

58 59 60
#include <rpcdce.h>
/* #include <rpcnsi.h> */
#include <rpcnterr.h>
61
#include <excpt.h>
62
#include <winerror.h>
63

Ove Kaaven's avatar
Ove Kaaven committed
64 65 66 67 68 69 70 71 72 73
/* ignore exception handling for now */
#define RpcTryExcept if (1) {
#define RpcExcept(expr) } else {
#define RpcEndExcept }
#define RpcTryFinally
#define RpcFinally
#define RpcEndFinally
#define RpcExceptionCode() 0
/* #define RpcAbnormalTermination() abort() */

Huw D M Davies's avatar
Huw D M Davies committed
74
#endif /*__WINE_RPC_H */