mirror of https://github.com/lianthony/NT4.0
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.
45 lines
1017 B
45 lines
1017 B
/****************************************************************************
|
|
**
|
|
** File: CUI.H
|
|
** Purpose: Custom User Interface Include File.
|
|
** Notes:
|
|
**
|
|
****************************************************************************/
|
|
|
|
#ifndef CUI_H
|
|
#define CUI_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" { /* Assume C declarations for C++ */
|
|
#endif
|
|
|
|
|
|
#define fFalse ((BOOL)0)
|
|
#define fTrue ((BOOL)1)
|
|
|
|
#define cbFullPathMax (67) /* DOS limit */
|
|
|
|
#define cbSymValMax (0x2000)
|
|
#define cListItemsMax (0x07FF)
|
|
|
|
#define STF_MESSAGE (WM_USER + 0x8000)
|
|
#define STF_REINITDIALOG (STF_MESSAGE + 12)
|
|
#define STF_ACTIVATEAPP (STF_MESSAGE + 17)
|
|
|
|
|
|
extern BOOL WINAPI AssertSzUs ( LPSTR pchFile, unsigned usLine );
|
|
#ifndef Assert
|
|
#ifdef DEBUG
|
|
#define Assert(f) ((f) ? (void)0 : (void)AssertSzUs(__FILE__,__LINE__))
|
|
#else
|
|
#define Assert(f)
|
|
#endif
|
|
#endif /* !Assert */
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* End of extern "C" { */
|
|
#endif
|
|
|
|
#endif /* CUI_H */
|
|
|