mirror of https://github.com/tongzx/nt5src
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.
37 lines
687 B
37 lines
687 B
/*++
|
|
|
|
Copyright (C) Microsoft Corporation, 1999 - 1999
|
|
|
|
Module Name:
|
|
|
|
log.h
|
|
|
|
Abstract:
|
|
|
|
Headers for the cert server policy module logging functions
|
|
|
|
Author:
|
|
|
|
petesk 1-Jan-1999
|
|
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
BOOL
|
|
LogModuleStatus(
|
|
IN HMODULE hModule,
|
|
IN DWORD dwLogID, // Resource ID of log string
|
|
IN BOOL fPolicy,
|
|
IN WCHAR const *pwszSource,
|
|
IN WCHAR const * const *ppwszInsert); // array of insert strings
|
|
|
|
HRESULT
|
|
LogPolicyEvent(
|
|
IN HMODULE hModule,
|
|
IN DWORD dwLogID, // Resource ID of log string
|
|
IN ICertServerPolicy *pServer,
|
|
IN WCHAR const *pwszPropEvent,
|
|
IN WCHAR const * const *ppwszInsert); // array of insert strings
|