2007-06-30 00:33:38 +00:00
|
|
|
|
|
|
|
#if !defined( RPC_NO_WINDOWS_H ) && !defined( MAC ) && !defined( _MAC )
|
|
|
|
#include <windows.h>
|
2005-05-08 17:44:37 +00:00
|
|
|
#endif
|
|
|
|
|
2007-06-30 00:33:38 +00:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#ifndef _SEH_NO_NATIVE_NLG
|
|
|
|
/* FIXME ReactOS SEH support, we need remove this when gcc support native seh */
|
|
|
|
#include <libs/pseh/pseh.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
2005-05-08 17:44:37 +00:00
|
|
|
|
2007-06-30 00:33:38 +00:00
|
|
|
#ifndef __RPC_H__
|
|
|
|
#define __RPC_H__
|
|
|
|
|
|
|
|
#if _MSC_VER > 1000
|
|
|
|
#pragma once
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2007-10-06 18:04:03 +00:00
|
|
|
#if defined( MAC ) || defined( _MAC ) || defined(__powerpc__) && !defined(__REACTOS__)
|
2007-06-30 00:33:38 +00:00
|
|
|
#define __RPC_MAC__
|
|
|
|
#define __RPC_WIN32__
|
|
|
|
#include <pshpack2.h>
|
|
|
|
|
2007-10-19 23:21:45 +00:00
|
|
|
#else
|
2007-06-30 00:33:38 +00:00
|
|
|
#if defined(_M_IA64) || defined(_M_AMD64) || defined(_WIN64)
|
|
|
|
#define __RPC_WIN64__
|
|
|
|
#else
|
|
|
|
#define __RPC_WIN32__
|
|
|
|
#endif
|
2005-05-08 17:44:37 +00:00
|
|
|
#endif
|
|
|
|
|
2007-04-20 02:30:53 +00:00
|
|
|
#include <basetsd.h>
|
|
|
|
|
2007-06-30 00:33:38 +00:00
|
|
|
#if defined(__RPC_WIN64__)
|
|
|
|
#include <pshpack8.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __MIDL_USER_DEFINED
|
|
|
|
#define midl_user_allocate MIDL_user_allocate
|
|
|
|
#define midl_user_free MIDL_user_free
|
|
|
|
#define __MIDL_USER_DEFINED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
typedef void * I_RPC_HANDLE;
|
2005-05-08 17:44:37 +00:00
|
|
|
typedef long RPC_STATUS;
|
2007-06-30 00:33:38 +00:00
|
|
|
#define __RPC_FAR
|
|
|
|
|
|
|
|
#if defined(__RPC_WIN32__) || defined(__RPC_WIN64__)
|
|
|
|
#define RPC_UNICODE_SUPPORTED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if !defined(__RPC_MAC__)
|
|
|
|
#define __RPC_API __stdcall
|
|
|
|
#define __RPC_USER __stdcall
|
|
|
|
#define __RPC_STUB __stdcall
|
|
|
|
#define RPC_ENTRY __stdcall
|
|
|
|
#else
|
|
|
|
#define __RPC_API
|
|
|
|
#define __RPC_USER
|
|
|
|
#define __RPC_STUB
|
|
|
|
#define RPC_ENTRY
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GNUC__
|
|
|
|
#if !defined(DECLSPEC_IMPORT)
|
|
|
|
#define DECLSPEC_IMPORT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(_RPCRT4_)
|
|
|
|
#define RPCRTAPI DECLSPEC_IMPORT
|
|
|
|
#else
|
2007-10-19 23:21:45 +00:00
|
|
|
#define RPCRTAPI
|
2007-06-30 00:33:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(_RPCNS4_)
|
|
|
|
#define RPCNSAPI DECLSPEC_IMPORT
|
|
|
|
#else
|
2007-10-19 23:21:45 +00:00
|
|
|
#define RPCNSAPI
|
2007-06-30 00:33:38 +00:00
|
|
|
#endif
|
|
|
|
#else
|
2007-10-19 23:21:45 +00:00
|
|
|
#define RPCRTAPI
|
|
|
|
#define RPCNSAPI
|
2007-06-30 00:33:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __RPC_MAC__
|
|
|
|
#include <setjmp.h>
|
|
|
|
#define RPCXCWORD (sizeof(jmp_buf)/sizeof(int))
|
|
|
|
|
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning( disable: 4005 )
|
|
|
|
#include <rpcdce.h>
|
|
|
|
#include <rpcnsi.h>
|
|
|
|
#include <rpcerr.h>
|
|
|
|
#include <rpcmac.h>
|
|
|
|
#pragma warning(pop)
|
|
|
|
|
|
|
|
typedef void (RPC_ENTRY *MACYIELDCALLBACK)(short *) ;
|
|
|
|
RPC_STATUS RPC_ENTRY
|
|
|
|
RpcMacSetYieldInfo(MACYIELDCALLBACK pfnCallback) ;
|
|
|
|
|
|
|
|
#if !defined(UNALIGNED)
|
|
|
|
#define UNALIGNED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <poppack.h>
|
|
|
|
#else
|
|
|
|
#include <rpcdce.h>
|
|
|
|
/* #include <rpcnsi.h> */
|
|
|
|
#include <rpcnterr.h>
|
|
|
|
#include <excpt.h>
|
|
|
|
#include <winerror.h>
|
|
|
|
|
|
|
|
#ifndef __GNUC__
|
|
|
|
#define RpcTryExcept __try {
|
|
|
|
#define RpcExcept(expr) } __except (expr) {
|
|
|
|
#define RpcEndExcept }
|
|
|
|
#define RpcTryFinally __try {
|
|
|
|
#define RpcFinally } __finally {
|
|
|
|
#define RpcEndFinally }
|
|
|
|
#define RpcExceptionCode() GetExceptionCode()
|
|
|
|
#define RpcAbnormalTermination() AbnormalTermination()
|
|
|
|
#else
|
|
|
|
/* FIXME ReactOS SEH support, we need remove this when gcc support native seh */
|
|
|
|
|
|
|
|
#ifdef _SEH_NO_NATIVE_NLG
|
|
|
|
/* hack for _SEH_NO_NATIVE_NLG */
|
|
|
|
#define RpcTryExcept if (1) {
|
|
|
|
#define RpcExcept(expr) } else {
|
|
|
|
#define RpcEndExcept }
|
|
|
|
#define RpcTryFinally
|
|
|
|
#define RpcFinally
|
|
|
|
#define RpcEndFinally
|
|
|
|
#define RpcExceptionCode() 0
|
|
|
|
#else
|
|
|
|
#define RpcTryExcept _SEH_TRY {
|
|
|
|
#define RpcExcept(expr) } _SEH_HANDLE { \
|
|
|
|
if (expr) \
|
|
|
|
{
|
|
|
|
#define RpcEndExcept } \
|
|
|
|
} \
|
|
|
|
_SEH_END;
|
|
|
|
|
2007-06-30 16:01:03 +00:00
|
|
|
#define RpcTryFinally
|
|
|
|
#define RpcFinally
|
|
|
|
#define RpcEndFinally
|
2007-06-30 00:33:38 +00:00
|
|
|
#define RpcExceptionCode() _SEH_GetExceptionCode()
|
|
|
|
|
|
|
|
/* #define RpcAbnormalTermination() abort() */
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__RPC_WIN64__)
|
|
|
|
#include <poppack.h>
|
|
|
|
#endif
|
|
|
|
|
2008-02-04 13:15:01 +00:00
|
|
|
#ifndef RPC_NO_WINDOWS_H
|
|
|
|
#include <rpcasync.h>
|
|
|
|
#endif
|
|
|
|
|
2007-06-30 00:33:38 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2005-05-08 17:44:37 +00:00
|
|
|
|