home *** CD-ROM | disk | FTP | other *** search
- #ifndef DAN_MSGBOX
- #define DAN_MSGBOX
-
- /*
- ╔═════════════════════════════════════════════════════════════╗
- ║ DMSGBOX.H -- Header file for Dan's Message Box Routines ║
- ╚═════════════════════════════════════════════════════════════╝
- */
-
- #define DMB_FRAME 0x0001
- // reserved ------> 0x0002
- #define DMB_SCROLL 0x0004
- #define DMB_MLE 0x0008
- #define DMB_LINES 0x0010
- #define DMB_USEBORDER 0x0020
- #define DMB_RAINBOW 0x0040
- #define DMB_SOLID 0x0080
- #define DMB_GRAF 0x0100
- #define DMB_NOWAY 0x0200
- #define DMB_SHADOW 0x0400
- //0x0800
-
- typedef struct _DMBSETTINGS
- {
- ULONG TextColor;
- ULONG TextBackColor;
- ULONG BackColor;
- ULONG BorderColor;
- CHAR FontName[100];
- }DMBSETTINGS;
-
- int DanMessageBox(HWND hwnd, char* Title, char* Text, DMBSETTINGS *settings, int WindowStyle);
- #endif