| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/ |
Upload File : |
#include <winapifamily.h>
/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
rpcnsip.h
Abstract:
This file contains the types and function definitions to use the
to implement the autohandle features of the runtime.
--*/
#ifndef __RPCNSIP_H__
#define __RPCNSIP_H__
#if _MSC_VER > 1000
#pragma once
#endif
#ifdef __cplusplus
extern "C" {
#endif
#pragma region Desktop Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
typedef struct
{
RPC_NS_HANDLE LookupContext;
RPC_BINDING_HANDLE ProposedHandle;
RPC_BINDING_VECTOR * Bindings;
} RPC_IMPORT_CONTEXT_P, * PRPC_IMPORT_CONTEXT_P;
/* Stub Auto Binding routines. */
RPCNSAPI
RPC_STATUS
RPC_ENTRY
I_RpcNsGetBuffer(
IN PRPC_MESSAGE Message
);
RPCNSAPI
RPC_STATUS
RPC_ENTRY
I_RpcNsSendReceive(
IN PRPC_MESSAGE Message,
OUT RPC_BINDING_HANDLE __RPC_FAR * Handle
);
RPCNSAPI
_Analysis_noreturn_
void
RPC_ENTRY
I_RpcNsRaiseException(
IN PRPC_MESSAGE Message,
IN RPC_STATUS Status
);
RPCNSAPI
RPC_STATUS
RPC_ENTRY
I_RpcReBindBuffer(
IN PRPC_MESSAGE Message
);
RPCNSAPI
RPC_STATUS
RPC_ENTRY
I_NsServerBindSearch(
void
);
RPCNSAPI
RPC_STATUS
RPC_ENTRY
I_NsClientBindSearch(
void
);
RPCNSAPI
void
RPC_ENTRY
I_NsClientBindDone(
void
);
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */
#pragma endregion
#ifdef __cplusplus
}
#endif
#endif /* __RPCNSIP_H__ */