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.
 
 
 
 
 
 

89 lines
1.3 KiB

/*
* inifile.h - Initialization file processing module description.
*/
/* Types
********/
#ifdef DEBUG
/* .ini switch types */
typedef enum _iniswitchtype
{
IST_BOOL,
IST_DEC_INT,
IST_UNS_DEC_INT
}
INISWITCHTYPE;
DECLARE_STANDARD_TYPES(INISWITCHTYPE);
/* boolean .ini switch */
typedef struct _booliniswitch
{
INISWITCHTYPE istype; /* must be IST_BOOL */
LPCTSTR pcszKeyName;
PDWORD pdwParentFlags;
DWORD dwFlag;
}
BOOLINISWITCH;
DECLARE_STANDARD_TYPES(BOOLINISWITCH);
/* decimal integer .ini switch */
typedef struct _decintiniswitch
{
INISWITCHTYPE istype; /* must be IST_DEC_INT */
LPCTSTR pcszKeyName;
PINT pnValue;
}
DECINTINISWITCH;
DECLARE_STANDARD_TYPES(DECINTINISWITCH);
/* unsigned decimal integer .ini switch */
typedef struct _unsdecintiniswitch
{
INISWITCHTYPE istype; /* must be IST_UNS_DEC_INT */
LPCTSTR pcszKeyName;
PUINT puValue;
}
UNSDECINTINISWITCH;
DECLARE_STANDARD_TYPES(UNSDECINTINISWITCH);
#endif
/* Global Variables
*******************/
#ifdef DEBUG
/* defined by client */
extern LPCTSTR GpcszIniFile;
extern LPCTSTR GpcszIniSection;
#endif
/* Prototypes
*************/
#ifdef DEBUG
/* inifile.c */
extern BOOL SetIniSwitches(const PCVOID *, UINT);
#endif