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.
14 lines
456 B
14 lines
456 B
//--------------------------------------------------------------------
|
|
// Policy - header
|
|
// Copyright (C) Microsoft Corporation, 2001
|
|
//
|
|
// Created by: Duncan Bryce (duncanb), 04-22-01
|
|
//
|
|
// Helper routines from w32time's group policy support
|
|
|
|
#ifndef POLICY_H
|
|
#define POLICY_H
|
|
|
|
HRESULT MyRegQueryPolicyValueEx(HKEY hPreferenceKey, HKEY hPolicyKey, LPWSTR pwszValue, LPWSTR pwszReserved, DWORD *pdwType, BYTE *pbData, DWORD *pcbData);
|
|
|
|
#endif // POLICY_H
|