Leaked source code of windows server 2003
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.
 
 
 
 
 
 

86 lines
1.6 KiB

//+--------------------------------------------------------------------------
//
// Copyright (c) 1997-1999 Microsoft Corporation
//
// File: lkpdesc.h
//
// Contents:
//
// History:
//
//---------------------------------------------------------------------------
#ifndef __LKPDESC_H__
#define __LKPDESC_H__
#include "server.h"
#ifdef __cplusplus
extern "C" {
#endif
void
TLSDBLockKeyPackDescTable();
void
TLSDBUnlockKeyPackDescTable();
DWORD
TLSDBKeyPackDescEnumBegin(
IN PTLSDbWorkSpace pDbWkSpace,
IN BOOL bMatchAll,
IN DWORD dwSearchParm,
IN PLICPACKDESC lpKeyPackDesc
);
DWORD
TLSDBKeyPackDescEnumNext(
IN PTLSDbWorkSpace pDbWkSpace,
IN OUT PLICPACKDESC lpKeyPackDesc
);
DWORD
TLSDBKeyPackDescEnumEnd(
IN PTLSDbWorkSpace pDbWkSpace
);
DWORD
TLSDBKeyPackDescAddEntry(
IN PTLSDbWorkSpace pDbWkSpace,
IN PLICPACKDESC lpKeyPackDesc
);
DWORD
TLSDBKeyPackDescDeleteEntry(
IN PTLSDbWorkSpace pDbWkSpace,
IN PLICPACKDESC lpKeyPackDesc
);
DWORD
TLSDBKeyPackDescUpdateEntry(
IN PTLSDbWorkSpace pDbWkSpace,
IN DWORD dwUpdateParm,
IN PLICPACKDESC lpKeyPackDesc
);
DWORD
TLSDBKeyPackDescSetValue(
PTLSDbWorkSpace pDbWkSpace,
DWORD dwSetParm,
PLICPACKDESC lpKeyPackDesc
);
DWORD
TLSDBKeyPackDescFind(
IN PTLSDbWorkSpace pDbWkSpace,
IN BOOL bMatchAllParam,
IN DWORD dwSearchParm,
IN PLICPACKDESC lpKeyPackDesc,
IN OUT PLICPACKDESC lpKeyPackDescFound
);
#ifdef __cplusplus
}
#endif
#endif