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.
23 lines
757 B
23 lines
757 B
/******************************Module*Header*******************************\
|
|
*
|
|
* *******************
|
|
* * GDI SAMPLE CODE *
|
|
* *******************
|
|
*
|
|
* Module Name: registry.h
|
|
*
|
|
* utility routines to help with accessing the registry.
|
|
*
|
|
* Copyright (c) 1998 Microsoft Corporation. All rights reserved.
|
|
*
|
|
\**************************************************************************/
|
|
#ifndef _REGISTRY_H_
|
|
#define _REGISTRY_H_
|
|
|
|
extern BOOL bRegistryRetrieveGammaLUT(PPDev ppdev, PVIDEO_CLUT pScreenClut);
|
|
|
|
extern BOOL bRegistrySaveGammaLUT(PPDev ppdev, PVIDEO_CLUT pScreenClut);
|
|
|
|
extern BOOL bRegistryQueryUlong(PPDev, LPWSTR, PULONG);
|
|
|
|
#endif // __REGISTRY_H__
|