Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

69 lines
1.6 KiB

//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1997 - 1999
//
// File: rkeysvcc.h
//
//--------------------------------------------------------------------------
#ifndef __rkeysvcc_h__
#define __rkeysvcc_h__
#ifdef __cplusplus
extern "C"{
#endif
typedef void *KEYSVCC_HANDLE;
typedef enum _KEYSVC_TYPE {
KeySvcMachine,
KeySvcService
} KEYSVC_TYPE;
typedef struct _KEYSVC_UNICODE_STRING {
USHORT Length;
USHORT MaximumLength;
#ifdef KEYSVC_MIDL_PASS
[size_is(MaximumLength / 2), length_is((Length) / 2) ]
#endif // KEYSVC_MIDL_PASS
USHORT *Buffer;
} KEYSVC_UNICODE_STRING, *PKEYSVC_UNICODE_STRING;
typedef struct _KEYSVC_BLOB {
ULONG cb;
#ifdef KEYSVC_MIDL_PASS
[size_is(cb), length_is(cb)]
#endif // KEYSVC_MIDL_PASS
BYTE *pb;
} KEYSVC_BLOB, *PKEYSVC_BLOB;
ULONG RKeyOpenKeyService
( /* [in] */ LPSTR pszMachineName,
/* [in] */ KEYSVC_TYPE OwnerType,
/* [in] */ LPWSTR pwszOwnerName,
/* [in] */ void *pAuthentication,
/* [out][in] */ void *pReserved,
/* [out] */ KEYSVCC_HANDLE *phKeySvcCli);
ULONG RKeyCloseKeyService
(/* [in] */ KEYSVCC_HANDLE hKeySvcCli,
/* [out][in] */ void *pReserved);
ULONG RKeyPFXInstall
(/* [in] */ KEYSVCC_HANDLE hKeySvcCli,
/* [in] */ PKEYSVC_BLOB pPFX,
/* [in] */ PKEYSVC_UNICODE_STRING pPassword,
/* [in] */ ULONG ulFlags);
#ifdef __cplusplus
}
#endif
#endif // #ifndef __rkeysvcc_h__