mirror of
https://github.com/reactos/reactos.git
synced 2025-06-13 11:58:31 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
160
sdk/include/psdk/rpc.h
Normal file
160
sdk/include/psdk/rpc.h
Normal file
|
@ -0,0 +1,160 @@
|
|||
|
||||
#if !defined( RPC_NO_WINDOWS_H ) && !defined( MAC ) && !defined( _MAC )
|
||||
#ifndef _INC_WINDOWS
|
||||
#include <windows.h>
|
||||
#endif /* _INC_WINDOWS */
|
||||
#endif
|
||||
|
||||
#ifndef RC_INVOKED
|
||||
#include <pseh/pseh2.h>
|
||||
#endif
|
||||
|
||||
#ifndef __RPC_H__
|
||||
#define __RPC_H__
|
||||
|
||||
#if _MSC_VER > 1000
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#if defined( MAC ) || defined( _MAC ) || defined(__powerpc__) && !defined(__REACTOS__)
|
||||
#define __RPC_MAC__
|
||||
#define __RPC_WIN32__
|
||||
#include <pshpack2.h>
|
||||
|
||||
#else
|
||||
#if defined(_M_IA64) || defined(_M_AMD64) || defined(_WIN64)
|
||||
#define __RPC_WIN64__
|
||||
#else
|
||||
#define __RPC_WIN32__
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include <basetsd.h>
|
||||
|
||||
#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;
|
||||
#ifndef __ROS_LONG64__
|
||||
typedef long RPC_STATUS;
|
||||
#else
|
||||
typedef int RPC_STATUS;
|
||||
#endif
|
||||
#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
|
||||
#define RPCRTAPI
|
||||
#endif
|
||||
|
||||
#if !defined(_RPCNS4_)
|
||||
#define RPCNSAPI DECLSPEC_IMPORT
|
||||
#else
|
||||
#define RPCNSAPI
|
||||
#endif
|
||||
#else
|
||||
#define RPCRTAPI
|
||||
#define RPCNSAPI
|
||||
#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
|
||||
#define RpcTryExcept _SEH2_TRY
|
||||
#define RpcExcept(expr) _SEH2_EXCEPT((expr))
|
||||
#define RpcEndExcept _SEH2_END;
|
||||
#define RpcTryFinally _SEH2_TRY
|
||||
#define RpcFinally _SEH2_FINALLY
|
||||
#define RpcEndFinally _SEH2_END;
|
||||
#define RpcExceptionCode() _SEH2_GetExceptionCode()
|
||||
#define RpcAbnormalTermination() (_SEH2_GetExceptionCode() != 0)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(__RPC_WIN64__)
|
||||
#include <poppack.h>
|
||||
#endif
|
||||
|
||||
#ifndef RPC_NO_WINDOWS_H
|
||||
#include <rpcasync.h>
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue