#ifndef __PRINTERAPI__
   #define __PRINTERAPI__

   // winAPI window modes
   #define SW_HIDE             0
   #define SW_SHOWNORMAL       1
   #define SW_NORMAL           1
   #define SW_SHOWMINIMIZED    2
   #define SW_SHOWMAXIMIZED    3
   #define SW_MAXIMIZE         3
   #define SW_SHOWNOACTIVATE   4
   #define SW_SHOW             5
   #define SW_MINIMIZE         6
   #define SW_SHOWMINNOACTIVE  7
   #define SW_SHOWNA           8
   #define SW_RESTORE          9
   #define SW_SHOWDEFAULT      10
   #define SW_FORCEMINIMIZE    11
   #define SW_MAX              11

   #define BRENT_DUBS_MIN      12

   #define HWND_BROADCAST 0xffff
   #define WM_SETFOCUS                     0x0007
   #define WM_KILLFOCUS                    0x0008
   #define WM_ENABLE                       0x000A
   #define WM_SETREDRAW                    0x000B
   #define WM_SETTEXT                      0x000C
   #define WM_GETTEXT                      0x000D
   #define WM_GETTEXTLENGTH                0x000E
   #define WM_PAINT                        0x000F
   #define WM_CLOSE                        0x0010
   #define WM_QUIT                         0x0012
   #define WM_ERASEBKGND                   0x0014
   #define WM_SYSCOLORCHANGE               0x0015
   #define WM_SHOWWINDOW                   0x0018
   #define WM_WININICHANGE                 0x001A
   #define WM_SETTINGCHANGE                WM_WININICHANGE

#endif


