24 lines
577 B
C
24 lines
577 B
C
|
/*****************************************************************************\
|
||
|
FILE: SettingsPg.h
|
||
|
|
||
|
DESCRIPTION:
|
||
|
This code will display a "Settings" tab in the
|
||
|
"Display Properties" dialog
|
||
|
|
||
|
BryanSt 1/05/2001 Updated and Converted to C++
|
||
|
|
||
|
Copyright (C) Microsoft Corp 1993-2001. All rights reserved.
|
||
|
\*****************************************************************************/
|
||
|
|
||
|
#ifndef _SETTINGSPG_H
|
||
|
#define _SETTINGSPG_H
|
||
|
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
BOOL fFoceSmallFont;
|
||
|
IUnknown * punkSite;
|
||
|
} GENERAL_ADVDLG_INITPARAMS;
|
||
|
|
||
|
#endif // _SETTINGSPG_H
|