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.
41 lines
989 B
41 lines
989 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1998 - 1999
|
|
//
|
|
// File: regutil.h
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef HEADER_REGUTIL
|
|
#define HEADER_REGUTIL
|
|
|
|
|
|
BOOL
|
|
OpenAdapterKey(
|
|
const LPTSTR Name,
|
|
PHKEY Key
|
|
);
|
|
|
|
BOOL
|
|
ReadRegistryDword(HKEY Key,
|
|
LPCTSTR ParameterName,
|
|
LPDWORD Value);
|
|
|
|
BOOL ReadRegistryOemString(HKEY Key,
|
|
LPWSTR ParameterName,
|
|
LPTSTR String,
|
|
LPDWORD Length);
|
|
|
|
BOOL ReadRegistryIpAddrString(HKEY Key,
|
|
LPCTSTR ParameterName,
|
|
PIP_ADDR_STRING IpAddr);
|
|
|
|
BOOL ReadRegistryString(HKEY Key,
|
|
LPCTSTR ParameterName,
|
|
LPTSTR String,
|
|
LPDWORD Length);
|
|
|
|
#endif
|
|
|