mirror of https://github.com/UMSKT/xpmgr.git
65 lines
1.3 KiB
C
65 lines
1.3 KiB
C
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// File: rpcssl.h
|
|
//
|
|
// Contents: prototypes for RemoteProcedure Call API functions
|
|
// that use types from wincrypt.h
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef RPC_UNICODE_SUPPORTED
|
|
|
|
#ifdef UNICODE
|
|
#define RpcCertGeneratePrincipalName RpcCertGeneratePrincipalNameW
|
|
#else /* UNICODE */
|
|
#define RpcCertGeneratePrincipalName RpcCertGeneratePrincipalNameA
|
|
#endif /* UNICODE */
|
|
|
|
RPCRTAPI
|
|
RPC_STATUS
|
|
RPC_ENTRY
|
|
RpcCertGeneratePrincipalNameW(
|
|
__in PCCERT_CONTEXT Context,
|
|
__in DWORD Flags,
|
|
__deref_out RPC_WSTR *pBuffer
|
|
);
|
|
|
|
|
|
RPCRTAPI
|
|
RPC_STATUS
|
|
RPC_ENTRY
|
|
RpcCertGeneratePrincipalNameA(
|
|
__in PCCERT_CONTEXT Context,
|
|
__in DWORD Flags,
|
|
__deref_out RPC_CSTR * pBuffer
|
|
);
|
|
|
|
#else /* RPC_UNICODE_SUPPORTED */
|
|
|
|
RPCRTAPI
|
|
RPC_STATUS
|
|
RPC_ENTRY
|
|
RpcCertGeneratePrincipalName(
|
|
__in PCCERT_CONTEXT Context,
|
|
__in DWORD Flags,
|
|
__deref_out RPC_CSTR *pBuffer
|
|
);
|
|
|
|
#endif /* RPC_UNICODE_SUPPORTED */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|