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.
35 lines
692 B
35 lines
692 B
/*++=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
|
Copyright (c) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
registry.h
|
|
|
|
Abstract:
|
|
|
|
Registry functions
|
|
|
|
Author:
|
|
|
|
Paul M Midgen (pmidge) 23-May-2000
|
|
|
|
|
|
Revision History:
|
|
|
|
23-May-2000 pmidge
|
|
Created
|
|
|
|
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--*/
|
|
|
|
#ifndef _REGISTRY_H_
|
|
#define _REGISTRY_H_
|
|
|
|
#include "common.h"
|
|
|
|
HKEY _GetRootKey(BOOL fOpen);
|
|
|
|
BOOL SetRegValue(LPCWSTR wszValueName, DWORD dwType, LPVOID pvData, DWORD dwSize);
|
|
BOOL GetRegValue(LPCWSTR wszValueName, DWORD dwType, LPVOID* ppvData);
|
|
|
|
#endif /* _REGISTRY_H_ */
|