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.
 
 
 
 
 
 

68 lines
1.1 KiB

/*++
Copyright (c) 1996 Microsoft Corporation
Module Name:
reguser.h
Abstract:
For accessing information stored under registry key:
HKEY_CURRENT_USER and HKEY_LOCAL_MACHINE
Environment:
Fax driver user interface
Revision History:
01/16/96 -davidx-
Created it.
dd-mm-yy -author-
description
--*/
#ifndef _REGISTRY_H_
#define _REGISTRY_H_
//
// Maximum length allowed for a string value (including the null terminator)
//
#define MAX_STRING_LEN MAX_PATH
//
// Open a handle to the specified registry key
//
#define REG_READONLY KEY_READ
#define REG_READWRITE KEY_ALL_ACCESS
#define GetUserInfoRegKey(pKeyName, readOnly) \
OpenRegistryKey(HKEY_CURRENT_USER, pKeyName, FALSE,readOnly)
//
// Get per-user devmode information
//
PDEVMODE
GetPerUserDevmode(
LPTSTR pPrinterName
);
//
// Find the directories under which user cover pages are stored
//
LPTSTR
GetUserCoverPageDir(
VOID
);
#endif // !_REGISTRY_H_