Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
useful page: Value of constants for the Windows 32-bit API
#1
I came across this page today, it might come in handy for anyone that uses the Win32 API? 

Value of constants for the Windows 32-bit API (pcsoft.fr)

https://doc.pcsoft.fr/en-US/?6510001

Here are the values in one handy table QB64PE formatted code... 
Some of them appear to be based off other constants in the list but with an offset added. 
A couple don't have a value, e.g., "+ QS_MOUSEBUTTON +". 
I don't know if they're all correct - if not then feel free to speak up... 

UPDATE: Thanks to everyone for their feedback and to Steve for editing into QB64PE syntax, placing any constants which others depend on above those in the code, fixing values & otherwise commenting out any with unknown values, and moving it all into a code box. 

Code: (Select All)

'{Win32 API Constant} = {Value}

Const WM_USER = 1024
Const ACCESS_SYSTEM_SECURITY = 16777216
Const ACL_REVISION = 2
Const ACL_REVISION1 = 1
Const ACL_REVISION2 = 2
Const AclRevisionInformation = 1
Const AclSizeInformation = 2
Const AD_CLOCKWISE = 2
Const AD_COUNTERCLOCKWISE = 1
Const ALTERNATE = 1
Const ANSI_CHARSET = 0
Const ANSI_FIXED_FONT = 11
Const ANSI_VAR_FONT = 12
Const ANYSIZE_ARRAY = 1
Const APPCLASS_MASK = 15
Const APPCLASS_MONITOR = 1
Const APPCLASS_STANDARD = 0
Const APPCMD_CLIENTONLY = 16
Const APPCMD_FILTERINITS = 32
Const APPCMD_MASK = 4080
Const APPLICATION_ERROR_MASK = 536870912
Const ARABIC_CHARSET = 178
Const ASPECT_FILTERING = 1
Const ASPECTX = 40
Const ASPECTXY = 44
Const ASPECTY = 42
Const ASYNCH = 128
Const ATTR_CONVERTED = 2
Const ATTR_INPUT = 0
Const ATTR_INPUT_ERROR = 4
Const ATTR_TARGET_CONVERTED = 1
Const ATTR_TARGET_NOTCONVERTED = 3
Const AUX_MAPPER = -1
Const AUXCAPS_AUXIN = 2
Const AUXCAPS_CDAUDIO = 1
Const AUXCAPS_LRVOLUME = 2
Const AUXCAPS_VOLUME = 1
Const BACKGROUND_BLUE = 16
Const BACKGROUND_GREEN = 32
Const BACKGROUND_INTENSITY = 128
Const BACKGROUND_RED = 64
Const BACKUP_ALTERNATE_DATA = 4
Const BACKUP_DATA = 1
Const BACKUP_EA_DATA = 2
Const BACKUP_LINK = 5
Const BACKUP_SECURITY_DATA = 3
Const BALTIC_CHARSET = 186
Const BANDINFO = 24
Const BATTERY_FLAG_CHARGING = 8
Const BATTERY_FLAG_CRITICAL = 4
Const BATTERY_FLAG_HIGH = 1
Const BATTERY_FLAG_LOW = 2
Const BATTERY_FLAG_NO_BATTERY = 128
Const BATTERY_FLAG_UNKNOWN = 255
Const BATTERY_LIFE_UNKNOWN = 65535
Const BATTERY_PERCENTAGE_UNKNOWN = 255
Const BAUD_075 = 1
Const BAUD_110 = 2
Const BAUD_115200 = 131072
Const BAUD_1200 = 64
Const BAUD_128K = 65536
Const BAUD_134_5 = 4
Const BAUD_14400 = 4096
Const BAUD_150 = 8
Const BAUD_1800 = 128
Const BAUD_19200 = 8192
Const BAUD_2400 = 256
Const BAUD_300 = 16
Const BAUD_38400 = 16384
Const BAUD_4800 = 512
Const BAUD_56K = 32768
Const BAUD_57600 = 262144
Const BAUD_600 = 32
Const BAUD_7200 = 1024
Const BAUD_9600 = 2048
Const BAUD_USER = 268435456
Const BEGIN_PATH = 4096
Const BI_bitfields = 3
Const BI_RGB = 0
Const BI_RLE4 = 2
Const BI_RLE8 = 1
Const BITSPIXEL = 12
Const BKMODE_LAST = 2
Const BLACK_BRUSH = 4
Const BLACK_PEN = 7
Const BLACKNESS = 66
Const BLACKONWHITE = 1
Const BM_GETCHECK = 240
Const BM_GETSTATE = 242
Const BM_SETCHECK = 241
Const BM_SETSTATE = 243
Const BM_SETSTYLE = 244
Const BN_CLICKED = 0
Const BN_DISABLE = 4
Const BN_DOUBLECLICKED = 5
Const BN_HILITE = 2
Const BN_PAINT = 1
Const BN_UNHILITE = 3
Const BOLD_FONTTYPE = 256
Const BS_3STATE = 5
Const BS_AUTO3STATE = 6
Const BS_AUTOCHECKBOX = 3
Const BS_AUTORADIOBUTTON = 9
Const BS_CHECKBOX = 2
Const BS_DEFPUSHBUTTON = 1
Const BS_DIBPATTERN = 5
Const BS_DIBPATTERN8X8 = 8
Const BS_DIBPATTERNPT = 6
Const BS_GROUPBOX = 7
Const BS_HATCHED = 2
Const BS_NULL = 1
Const BS_HOLLOW = BS_NULL
Const BS_INDEXED = 4
Const BS_LEFTTEXT = 32
Const BS_OWNERDRAW = 11
Const BS_PATTERN = 3
Const BS_PATTERN8X8 = 7
Const BS_PUSHBUTTON = 0
Const BS_RADIOBUTTON = 4
Const BS_SOLID = 0
Const BS_USERBUTTON = 8
Const C1_ALPHA = 256
Const C1_BLANK = 64
Const C1_CNTRL = 32
Const C1_DIGIT = 4
Const C1_LOWER = 2
Const C1_PUNCT = 16
Const C1_SPACE = 8
Const C1_TRANSPARENT = 1
Const C1_UPPER = 1
Const C1_XDIGIT = 128
Const C2_ARABICNUMBER = 6
Const C2_BLOCKSEPARATOR = 8
Const C2_COMMONSEPARATOR = 7
Const C2_EUROPENUMBER = 3
Const C2_EUROPESEPARATOR = 4
Const C2_EUROPETERMINATOR = 5
Const C2_LEFTTORIGHT = 1
Const C2_NOTAPPLICABLE = 0
Const C2_OTHERNEUTRAL = 11
Const C2_RIGHTTOLEFT = 2
Const C2_SEGMENTSEPARATOR = 9
Const C2_WHITESPACE = 10
Const C3_DIACRITIC = 2
Const C3_NONSPACING = 1
Const C3_NOTAPPLICABLE = 0
Const C3_SYMBOL = 8
Const C3_VOWELMARK = 4
Const CA_LOG_FILTER = 2
Const CA_NEGATIVE = 1
Const CACHE_E_FIRST = 2147746160
Const CACHE_E_LAST = 2147746175
Const CACHE_E_NOCACHE_UPDATED = 2147746160
Const CACHE_S_FIRST = 262512
Const CACHE_S_FORMATETC_NOTSUPPORTED = 262512
Const CACHE_S_LAST = 262527
Const CACHE_S_SAMECACHE = 262513
Const CACHE_S_SOMECACHES_NOTUPDATED = 262514
Const CADV_LATEACK = 65535
Const CAL_GREGORIAN = 1
Const CAL_GREGORIAN_US = 2
Const CAL_ICALINTVALUE = 1
Const CAL_IYEAROFFSETRANGE = 3
Const CAL_JAPAN = 3
Const CAL_KOREA = 5
Const CAL_SABBREVDAYNAME1 = 14
Const CAL_SABBREVDAYNAME2 = 15
Const CAL_SABBREVDAYNAME3 = 16
Const CAL_SABBREVDAYNAME4 = 17
Const CAL_SABBREVDAYNAME5 = 18
Const CAL_SABBREVDAYNAME6 = 19
Const CAL_SABBREVDAYNAME7 = 20
Const CAL_SABBREVMONTHNAME1 = 34
Const CAL_SABBREVMONTHNAME10 = 43
Const CAL_SABBREVMONTHNAME11 = 44
Const CAL_SABBREVMONTHNAME12 = 45
Const CAL_SABBREVMONTHNAME13 = 46
Const CAL_SABBREVMONTHNAME2 = 35
Const CAL_SABBREVMONTHNAME3 = 36
Const CAL_SABBREVMONTHNAME4 = 37
Const CAL_SABBREVMONTHNAME5 = 38
Const CAL_SABBREVMONTHNAME6 = 39
Const CAL_SABBREVMONTHNAME7 = 40
Const CAL_SABBREVMONTHNAME8 = 41
Const CAL_SABBREVMONTHNAME9 = 42
Const CAL_SCALNAME = 2
Const CAL_SDAYNAME1 = 7
Const CAL_SDAYNAME2 = 8
Const CAL_SDAYNAME3 = 9
Const CAL_SDAYNAME4 = 10
Const CAL_SDAYNAME5 = 11
Const CAL_SDAYNAME6 = 12
Const CAL_SDAYNAME7 = 13
Const CAL_SERASTRING = 4
Const CAL_SLONGDATE = 6
Const CAL_SMONTHNAME1 = 21
Const CAL_SMONTHNAME10 = 30
Const CAL_SMONTHNAME11 = 31
Const CAL_SMONTHNAME12 = 32
Const CAL_SMONTHNAME13 = 33
Const CAL_SMONTHNAME2 = 22
Const CAL_SMONTHNAME3 = 23
Const CAL_SMONTHNAME4 = 24
Const CAL_SMONTHNAME5 = 25
Const CAL_SMONTHNAME6 = 26
Const CAL_SMONTHNAME7 = 27
Const CAL_SMONTHNAME8 = 28
Const CAL_SMONTHNAME9 = 29
Const CAL_SSHORTDATE = 5
Const CAL_TAIWAN = 4
Const CALL_PENDING = 2
Const CALLBACK_FUNCTION = 196608
Const CALLBACK_NULL = 0
Const CALLBACK_TASK = 131072
Const CALLBACK_TYPEMASK = 458752
Const CALLBACK_WINDOW = 65536
Const CAPS1 = 94
Const CAPSLOCK_ON = 128
Const CB_ADDSTRING = 323
Const CB_DELETESTRING = 324
Const CB_DIR = 325
Const CB_ERR = -1
Const CB_ERRSPACE = -2
Const CB_FINDSTRING = 332
Const CB_FINDSTRINGEXACT = 344
Const CB_GETCOUNT = 326
Const CB_GETCURSEL = 327
Const CB_GETDROPPEDCONTROLRECT = 338
Const CB_GETDROPPEDSTATE = 343
Const CB_GETEDITSEL = 320
Const CB_GETEXTENDEDUI = 342
Const CB_GETITEMDATA = 336
Const CB_GETITEMHEIGHT = 340
Const CB_GETLBTEXT = 328
Const CB_GETLBTEXTLEN = 329
Const CB_GETLOCALE = 346
Const CB_INSERTSTRING = 330
Const CB_LIMITTEXT = 321
Const CB_MSGMAX = 347
Const CB_OKAY = 0
Const CB_RESETCONTENT = 331
Const CB_SELECTSTRING = 333
Const CB_SETCURSEL = 334
Const CB_SETEDITSEL = 322
Const CB_SETEXTENDEDUI = 341
Const CB_SETITEMDATA = 337
Const CB_SETITEMHEIGHT = 339
Const CB_SETLOCALE = 345
Const CB_SHOWDROPDOWN = 335
Const CBF_FAIL_ADVISES = 16384
Const CBF_FAIL_ALLSVRXACTIONS = 258048
Const CBF_FAIL_CONNECTIONS = 8192
Const CBF_FAIL_EXECUTES = 32768
Const CBF_FAIL_POKES = 65536
Const CBF_FAIL_REQUESTS = 131072
Const CBF_FAIL_SELFCONNECTIONS = 4096
Const CBF_SKIP_ALLNOTIFICATIONS = 3932160
Const CBF_SKIP_CONNECT_CONFIRMS = 262144
Const CBF_SKIP_DISCONNECTS = 2097152
Const CBF_SKIP_REGISTRATIONS = 524288
Const CBF_SKIP_UNREGISTRATIONS = 1048576
Const CBM_CREATEDIB = 2
Const CBM_INIT = 4
Const CBN_CLOSEUP = 8
Const CBN_DBLCLK = 2
Const CBN_DROPDOWN = 7
Const CBN_EDITCHANGE = 5
Const CBN_EDITUPDATE = 6
Const CBN_ERRSPACE = -1
Const CBN_KILLFOCUS = 4
Const CBN_SELCHANGE = 1
Const CBN_SELENDCANCEL = 10
Const CBN_SELENDOK = 9
Const CBN_SETFOCUS = 3
Const CBR_110 = 110
Const CBR_115200 = 115200
Const CBR_1200 = 1200
Const CBR_128000 = 128000
Const CBR_14400 = 14400
Const CBR_19200 = 19200
Const CBR_2400 = 2400
Const CBR_256000 = 256000
Const CBR_300 = 300
Const CBR_38400 = 38400
Const CBR_4800 = 4800
Const CBR_56000 = 56000
Const CBR_57600 = 57600
Const CBR_600 = 600
Const CBR_9600 = 9600
Const CBR_BLOCK = 65535
Const CBS_AUTOHSCROLL = 64
Const CBS_DISABLENOSCROLL = 2048
Const CBS_DROPDOWN = 2
Const CBS_DROPDOWNLIST = 3
Const CBS_HASSTRINGS = 512
Const CBS_NOINTEGRALHEIGHT = 1024
Const CBS_OEMCONVERT = 128
Const CBS_OWNERDRAWFIXED = 16
Const CBS_OWNERDRAWVARIABLE = 32
Const CBS_SIMPLE = 1
Const CBS_SORT = 256
Const CC_ANYCOLOR = 256
Const CC_CHORD = 4
Const CC_CIRCLES = 1
Const CC_ELLIPSES = 8
Const CC_ENABLEHOOK = 16
Const CC_ENABLETEMPLATE = 32
Const CC_ENABLETEMPLATEHANDLE = 64
Const CC_FULLOPEN = 2
Const CC_INTERIORS = 128
Const CC_NONE = 0
Const CC_PIE = 2
Const CC_PREVENTFULLOPEN = 4
Const CC_RGBINIT = 1
Const CC_ROUNDRECT = 256
Const CC_SHOWHELP = 8
Const CC_SOLIDCOLOR = 128
Const CC_STYLED = 32
Const CC_WIDE = 16
Const CC_WIDESTYLED = 64
Const CCERR_CHOOSECOLORCODES = 20480
Const CCHDEVICENAME = 32
Const CCHFORMNAME = 32
Const CD_LBSELADD = 2
Const CD_LBSELCHANGE = 0
Const CD_LBSELNOITEMS = -1
Const CD_LBSELSUB = 1
Const CDERR_DIALOGFAILURE = 65535
Const CDERR_FINDRESFAILURE = 6
Const CDERR_GENERALCODES = 0
Const CDERR_INITIALIZATION = 2
Const CDERR_LOADRESFAILURE = 7
Const CDERR_LOADSTRFAILURE = 5
Const CDERR_LOCKRESFAILURE = 8
Const CDERR_MEMALLOCFAILURE = 9
Const CDERR_MEMLOCKFAILURE = 10
Const CDERR_NOHINSTANCE = 4
Const CDERR_NOHOOK = 11
Const CDERR_NOTEMPLATE = 3
Const CDERR_REGISTERMSGFAIL = 12
Const CDERR_STRUCTSIZE = 1
Const CDM_FIRST = WM_USER + 100
Const CDM_GETFILEPATH = CDM_FIRST + 1
Const CDM_GETFOLDERIDLIST = CDM_FIRST + 3
Const CDM_GETFOLDERPATH = CDM_FIRST + 2
Const CDM_GETSPEC = CDM_FIRST + 0
Const CDM_HIDECONTROL = CDM_FIRST + 5
Const CDM_LAST = WM_USER + 200
Const CDM_SETCONTROLTEXT = CDM_FIRST + 4
Const CDM_SETDEFEXT = CDM_FIRST + 6
Const CE_BREAK = 16
Const CE_DNS = 2048
Const CE_FRAME = 8
Const CE_IOE = 1024
Const CE_MODE = 32768
Const CE_OOP = 4096
Const CE_OVERRUN = 2
Const CE_PTO = 512
Const CE_RXOVER = 1
Const CE_RXPARITY = 4
Const CE_TXFULL = 256
Const CF_ANSIONLY = 1024
Const CF_APPLY = 512
Const CF_BITMAP = 2
Const CF_SCREENFONTS = 1
Const CF_PRINTERFONTS = 2
Const CF_BOTH = CF_SCREENFONTS + CF_PRINTERFONTS
Const CF_DIB = 8
Const CF_DIF = 5
Const CF_DSPBITMAP = 130
Const CF_DSPENHMETAFILE = 142
Const CF_DSPMETAFILEPICT = 131
Const CF_DSPTEXT = 129
Const CF_EFFECTS = 256
Const CF_ENABLEHOOK = 8
Const CF_ENABLETEMPLATE = 16
Const CF_ENABLETEMPLATEHANDLE = 32
Const CF_ENHMETAFILE = 14
Const CF_FIXEDPITCHONLY = 16384
Const CF_FORCEFONTEXIST = 65536
Const CF_GDIOBJFIRST = 768
Const CF_GDIOBJLAST = 1023
Const CF_INITTOLOGFONTSTRUCT = 64
Const CF_LIMITSIZE = 8192
Const CF_METAFILEPICT = 3
Const CF_NOFACESEL = 524288
Const CF_NOVECTORFONTS = 2048
Const CF_NOOEMFONTS = CF_NOVECTORFONTS
Const CF_NOSCRIPTSEL = 8388608
Const CF_NOSIMULATIONS = 4096
Const CF_NOSIZESEL = 2097152
Const CF_NOSTYLESEL = 1048576
Const CF_NOVERTFONTS = 16777216
Const CF_OEMTEXT = 7
Const CF_OWNERDISPLAY = 128
Const CF_PALETTE = 9
Const CF_PENDATA = 10
Const CF_PRIVATEFIRST = 512
Const CF_PRIVATELAST = 767
Const CF_RIFF = 11
Const CF_SCALABLEONLY = 131072
Const CF_SCREENFONTS = 1
Const CF_SCRIPTSONLY = CF_ANSIONLY
Const CF_SELECTSCRIPT = 4194304
Const CF_SHOWHELP = 4
Const CF_SYLK = 4
Const CF_TEXT = 1
Const CF_TIFF = 6
Const CF_TTONLY = 262144
Const CF_UNICODETEXT = 13
Const CF_USESTYLE = 128
Const CF_WAVE = 12
Const CF_WYSIWYG = 32768
Const CFERR_CHOOSEFONTCODES = 8192
Const CFERR_MAXLESSTHANMIN = 8194
Const CFERR_NOFONTS = 8193
Const CFS_CANDIDATEPOS = 64
Const CFS_DEFAULT = 0
Const CFS_EXCLUDE = 128
Const CFS_FORCE_POSITION = 32
Const CFS_POINT = 2
Const CFS_RECT = 1
Const CFS_SCREEN = 4
Const CHINESEBIG5_CHARSET = 136
Const chx1 = 1040
Const chx10 = 1049
Const chx11 = 1050
Const chx12 = 1051
Const chx13 = 1052
Const chx14 = 1053
Const chx15 = 1054
Const chx16 = 1053
Const chx2 = 1041
Const chx3 = 1042
Const chx4 = 1043
Const chx5 = 1044
Const chx6 = 1045
Const chx7 = 1046
Const chx8 = 1047
Const chx9 = 1048
Const CLASS_E_CLASSNOTAVAILABLE = 2147746065
Const CLASS_E_NOAGGREGATION = 2147746064
Const CLASSFACTORY_E_FIRST = 2147746064
Const CLASSFACTORY_E_LAST = 2147746079
Const CLASSFACTORY_S_FIRST = 262416
Const CLASSFACTORY_S_LAST = 262431
Const CLIENTSITE_E_FIRST = 2147746192
Const CLIENTSITE_E_LAST = 2147746207
Const CLIENTSITE_S_FIRST = 262544
Const CLIENTSITE_S_LAST = 262559
Const CLIP_CHARACTER_PRECIS = 1
Const CLIP_DEFAULT_PRECIS = 0
Const CLIP_EMBEDDED = 128
Const CLIP_LH_ANGLES = 16
Const CLIP_MASK = 15
Const CLIP_STROKE_PRECIS = 2
Const CLIP_TO_PATH = 4097
Const CLIP_TT_ALWAYS = 32
Const CLIPBRD_E_BAD_DATA = 2147746259
Const CLIPBRD_E_CANT_CLOSE = 2147746260
Const CLIPBRD_E_CANT_EMPTY = 2147746257
Const CLIPBRD_E_CANT_OPEN = 2147746256
Const CLIPBRD_E_CANT_SET = 2147746258
Const CLIPBRD_E_FIRST = 2147746256
Const CLIPBRD_E_LAST = 2147746271
Const CLIPBRD_S_FIRST = 262608
Const CLIPBRD_S_LAST = 262623
Const CLIPCAPS = 36
Const CLOSECHANNEL = 4112
Const CLR_INVALID = 65535
Const CLRBREAK = 9
Const CLRDTR = 6
Const CLRRTS = 4
Const cmb1 = 1136
Const cmb10 = 1145
Const cmb11 = 1146
Const cmb12 = 1147
Const cmb13 = 1148
Const cmb14 = 1149
Const cmb15 = 1150
Const cmb16 = 1151
Const cmb2 = 1137
Const cmb3 = 1138
Const cmb4 = 1139
Const cmb5 = 1140
Const cmb6 = 1141
Const cmb7 = 1142
Const cmb8 = 1143
Const cmb9 = 1144
Const CN_EVENT = 4
Const CN_RECEIVE = 1
Const CN_TRANSMIT = 2
Const CO_E_ALREADYINITIALIZED = 2147746289
Const CO_E_APPDIDNTREG = 2147746302
Const CO_E_APPNOTFOUND = 2147746293
Const CO_E_APPSINGLEUSE = 2147746294
Const CO_E_BAD_PATH = 2148007940
Const CO_E_CANTDETERMINECLASS = 2147746290
Const CO_E_CLASS_CREATE_FAILED = 2148007937
Const CO_E_CLASSSTRING = 2147746291
Const CO_E_DLLNOTFOUND = 2147746296
Const CO_E_ERRORINAPP = 2147746295
Const CO_E_ERRORINDLL = 2147746297
Const CO_E_FIRST = 2147746288
Const CO_E_IIDSTRING = 2147746292
Const CO_E_INIT_CLASS_CACHE = 2147500041
Const CO_E_INIT_MEMORY_ALLOCATOR = 2147500040
Const CO_E_INIT_ONLY_SINGLE_THREADED = 2147500050
Const CO_E_INIT_RPC_CHANNEL = 2147500042
Const CO_E_INIT_SCM_EXEC_FAILURE = 2147500049
Const CO_E_INIT_SCM_FILE_MAPPING_EXISTS = 2147500047
Const CO_E_INIT_SCM_MAP_VIEW_OF_FILE = 2147500048
Const CO_E_INIT_SCM_MUTEX_EXISTS = 2147500046
Const CO_E_INIT_SHARED_ALLOCATOR = 2147500039
Const CO_E_INIT_TLS = 2147500038
Const CO_E_INIT_TLS_CHANNEL_CONTROL = 2147500044
Const CO_E_INIT_TLS_SET_CHANNEL_CONTROL = 2147500043
Const CO_E_INIT_UNACCEPTED_USER_ALLOCATOR = 2147500045
Const CO_E_LAST = 2147746303
Const CO_E_NOTINITIALIZED = 2147746288
Const CO_E_OBJISREG = 2147746300
Const CO_E_OBJNOTCONNECTED = 2147746301
Const CO_E_OBJNOTREG = 2147746299
Const CO_E_OBJSRV_RPC_FAILURE = 2148007942
Const CO_E_RELEASED = 2147746303
Const CO_E_SCM_ERROR = 2148007938
Const CO_E_SCM_RPC_FAILURE = 2148007939
Const CO_E_SERVER_EXEC_FAILURE = 2148007941
Const CO_E_SERVER_STOPPING = 2148007944
Const CO_E_WRONGOSFORAPP = 2147746298
Const CO_S_FIRST = 262640
Const CO_S_LAST = 262655
Const COLOR_ACTIVEBORDER = 10
Const COLOR_ACTIVECAPTION = 2
Const COLOR_ADJ_MAX = 100
Const COLOR_ADJ_MIN = -100
Const COLOR_APPWORKSPACE = 12
Const COLOR_BACKGROUND = 1
Const COLOR_BTNFACE = 15
Const COLOR_BTNHIGHLIGHT = 20
Const COLOR_BTNSHADOW = 16
Const COLOR_BTNTEXT = 18
Const COLOR_CAPTIONTEXT = 9
Const COLOR_GRAYTEXT = 17
Const COLOR_HIGHLIGHT = 13
Const COLOR_HIGHLIGHTTEXT = 14
Const COLOR_INACTIVEBORDER = 11
Const COLOR_INACTIVECAPTION = 3
Const COLOR_INACTIVECAPTIONTEXT = 19
Const COLOR_MENU = 4
Const COLOR_MENUTEXT = 7
Const COLOR_SCROLLBAR = 0
Const COLOR_WINDOW = 5
Const COLOR_WINDOWFRAME = 6
Const COLOR_WINDOWTEXT = 8
Const COLORONCOLOR = 3
Const COLORRES = 108
Const COMPLEXREGION = 3
Const CONNECT_UPDATE_PROFILE = 1
Const CONSOLE_TEXTMODE_BUFFER = 1
Const CONTAINER_INHERIT_ACE = 2
Const CONVERT10_E_FIRST = 2147746240
Const CONVERT10_E_LAST = 2147746255
Const CONVERT10_E_OLESTREAM_BITMAP_TO_DIB = 2147746243
Const CONVERT10_E_OLESTREAM_FMT = 2147746242
Const CONVERT10_E_OLESTREAM_GET = 2147746240
Const CONVERT10_E_OLESTREAM_PUT = 2147746241
Const CONVERT10_E_STG_DIB_TO_BITMAP = 2147746246
Const CONVERT10_E_STG_FMT = 2147746244
Const CONVERT10_E_STG_NO_STD_STREAM = 2147746245
Const CONVERT10_S_FIRST = 262592
Const CONVERT10_S_LAST = 262607
Const CONVERT10_S_NO_PRESENTATION = 262592
Const CP_ACP = 0
Const CP_NONE = 0
Const CP_OEMCP = 1
Const CP_RECTANGLE = 1
Const CP_REGION = 2
Const CP_WINANSI = 1004
Const CP_WINUNICODE = 1200
Const CPS_CANCEL = 4
Const CPS_COMPLETE = 1
Const CPS_CONVERT = 2
Const CPS_REVERT = 3
Const CREATE_ALWAYS = 2
Const CREATE_NEW = 1
Const CREATE_NEW_CONSOLE = 16
Const CREATE_NEW_PROCESS_GROUP = 512
Const CREATE_NO_WINDOW = 134217728
Const CREATE_PROCESS_DEBUG_EVENT = 3
Const CREATE_SUSPENDED = 4
Const CREATE_THREAD_DEBUG_EVENT = 2
Const CS_BYTEALIGNCLIENT = 4096
Const CS_BYTEALIGNWINDOW = 8192
Const CS_CLASSDC = 64
Const CS_DBLCLKS = 8
Const CS_HREDRAW = 2
Const CS_INSERTCHAR = 8192
Const CS_KEYCVTWINDOW = 4
Const CS_NOCLOSE = 512
Const CS_NOKEYCVT = 256
Const CS_NOMOVECARET = 16384
Const CS_OWNDC = 32
Const CS_PARENTDC = 128
Const CS_PUBLICCLASS = 16384
Const CS_SAVEBITS = 2048
Const CS_VREDRAW = 1
Const CT_CTYPE1 = 1
Const CT_CTYPE2 = 2
Const CT_CTYPE3 = 4
Const CTLCOLOR_BTN = 3
Const CTLCOLOR_DLG = 4
Const CTLCOLOR_EDIT = 1
Const CTLCOLOR_LISTBOX = 2
Const CTLCOLOR_MAX = 8
Const CTLCOLOR_MSGBOX = 0
Const CTLCOLOR_SCROLLBAR = 5
Const CTLCOLOR_STATIC = 6
Const ctlFirst = 1024
Const ctlLast = 1279
Const CTRL_BREAK_EVENT = 1
Const CTRL_C_EVENT = 0
Const CTRL_CLOSE_EVENT = 2
Const CTRL_LOGOFF_EVENT = 5
Const CTRL_SHUTDOWN_EVENT = 6
Const CTRY_AUSTRALIA = 61
Const CTRY_AUSTRIA = 43
Const CTRY_BELGIUM = 32
Const CTRY_BRAZIL = 55
Const CTRY_CANADA = 2
Const CTRY_DEFAULT = 0
Const CTRY_DENMARK = 45
Const CTRY_FINLAND = 358
Const CTRY_FRANCE = 33
Const CTRY_GERMANY = 49
Const CTRY_ICELAND = 354
Const CTRY_IRELAND = 353
Const CTRY_ITALY = 39
Const CTRY_JAPAN = 81
Const CTRY_MEXICO = 52
Const CTRY_NETHERLANDS = 31
Const CTRY_NEW_ZEALAND = 64
Const CTRY_NORWAY = 47
Const CTRY_PORTUGAL = 351
Const CTRY_PRCHINA = 86
Const CTRY_SOUTH_KOREA = 82
Const CTRY_SPAIN = 34
Const CTRY_SWEDEN = 46
Const CTRY_SWITZERLAND = 41
Const CTRY_TAIWAN = 886
Const CTRY_UNITED_KINGDOM = 44
Const CTRY_UNITED_STATES = 1
Const CURVECAPS = 28
Const CW_USEDEFAULT = 2147483648
Const DATA_E_FIRST = 2147746096
Const DATA_E_LAST = 2147746111
Const DATA_S_FIRST = 262448
Const DATA_S_LAST = 262463
Const DATA_S_SAMEFORMATETC = 262448
Const DATABITS_16 = 16
Const DATABITS_16X = 32
Const DATABITS_5 = 1
Const DATABITS_6 = 2
Const DATABITS_7 = 4
Const DATABITS_8 = 8
Const DATE_LONGDATE = 2
Const DATE_SHORTDATE = 1
Const DC_BINADJUST = 19
Const DC_BINNAMES = 12
Const DC_BINS = 6
Const DC_COLLATE = 22
Const DC_COPIES = 18
Const DC_DATATYPE_PRODUCED = 21
Const DC_DRIVER = 11
Const DC_DUPLEX = 7
Const DC_EMF_COMPLIANT = 20
Const DC_ENUMRESOLUTIONS = 13
Const DC_EXTRA = 9
Const DC_FIELDS = 1
Const DC_FILEDEPENDENCIES = 14
Const DC_HASDEFID = 1332
Const DC_MAXEXTENT = 5
Const DC_MINEXTENT = 4
Const DC_ORIENTATION = 17
Const DC_PAPERNAMES = 16
Const DC_PAPERS = 2
Const DC_PAPERSIZE = 3
Const DC_SIZE = 8
Const DC_TRUETYPE = 15
Const DC_VERSION = 10
Const DCB_ACCUMULATE = 2
Const DCB_DIRTY = 2
Const DCB_DISABLE = 8
Const DCB_ENABLE = 4
Const DCB_RESET = 1
Const DCB_SET = 3
Const DCBA_FACEDOWNCENTER = 257
Const DCBA_FACEDOWNLEFT = 258
Const DCBA_FACEDOWNNONE = 256
Const DCBA_FACEDOWNRIGHT = 259
Const DCBA_FACEUPCENTER = 1
Const DCBA_FACEUPLEFT = 2
Const DCBA_FACEUPNONE = 0
Const DCBA_FACEUPRIGHT = 3
Const DCTT_BITMAP = 1
Const DCTT_DOWNLOAD = 2
Const DCTT_DOWNLOAD_OUTLINE = 8
Const DCTT_SUBDEV = 4
Const DCX_CACHE = 2
Const DCX_CLIPCHILDREN = 8
Const DCX_CLIPSIBLINGS = 16
Const DCX_EXCLUDERGN = 64
Const DCX_EXCLUDEUPDATE = 256
Const DCX_INTERSECTRGN = 128
Const DCX_INTERSECTUPDATE = 512
Const DCX_LOCKWINDOWUPDATE = 1024
Const DCX_NORECOMPUTE = 1048576
Const DCX_NORESETATTRS = 4
Const DCX_PARENTCLIP = 32
Const DCX_VALIDATE = 2097152
Const DCX_WINDOW = 1
Const DDD_EXACT_MATCH_ON_REMOVE = 4
Const DDD_RAW_TARGET_PATH = 1
Const DDD_REMOVE_DEFINITION = 2
Const DDE_FACK = 32768
Const DDE_FACKREQ = 32768
Const DDE_FAPPSTATUS = 255
Const DDE_FBUSY = 16384
Const DDE_FDEFERUPD = 16384
Const DDE_FNOTPROCESSED = 0
Const DDE_FRELEASE = 8192
Const DDE_FREQUESTED = 4096
Const DDL_ARCHIVE = 32
Const DDL_DIRECTORY = 16
Const DDL_DRIVES = 16384
Const DDL_EXCLUSIVE = 32768
Const DDL_HIDDEN = 2
Const DDL_POSTMSGS = 8192
Const DDL_READONLY = 1
Const DDL_READWRITE = 0
Const DDL_SYSTEM = 4
Const DEBUG_ONLY_THIS_PROCESS = 2
Const DEBUG_PROCESS = 1
Const DEF_PRIORITY = 1
Const DEFAULT_CHARSET = 1
Const DEFAULT_GUI_FONT = 17
Const DEFAULT_PALETTE = 15
Const DEFAULT_PITCH = 0
Const DEFAULT_QUALITY = 0
Const DELETE = 65536
Const DEREGISTERED = 5
Const DESKTOP_CREATEMENU = 4
Const DESKTOP_CREATEWINDOW = 2
Const DESKTOP_ENUMERATE = 64
Const DESKTOP_HOOKCONTROL = 8
Const DESKTOP_JOURNALPLAYBACK = 32
Const DESKTOP_JOURNALRECORD = 16
Const DESKTOP_READOBJECTS = 1
Const DESKTOP_WRITEOBJECTS = 128
Const DETACHED_PROCESS = 8
Const DEVICE_DEFAULT_FONT = 14
Const DEVICE_FONTTYPE = 2
Const DEVICEDATA = 19
Const DI_CHANNEL = 1
Const DI_READ_SPOOL_JOB = 3
Const DIALOPTION_BILLING = 64
Const DIALOPTION_DIALTONE = 256
Const DIALOPTION_QUIET = 128
Const DIB_PAL_COLORS = 1
Const DIB_PAL_INDICES = 2
Const DIB_PAL_LOGINDICES = 4
Const DIB_PAL_PHYSINDICES = 2
Const DIB_RGB_COLORS = 0
Const DISP_E_ARRAYISLOCKED = 2147614733
Const DISP_E_BADCALLEE = 2147614736
Const DISP_E_BADINDEX = 2147614731
Const DISP_E_BADPARAMCOUNT = 2147614734
Const DISP_E_BADVARTYPE = 2147614728
Const DISP_E_EXCEPTION = 2147614729
Const DISP_E_MEMBERNOTFOUND = 2147614723
Const DISP_E_NONAMEDARGS = 2147614727
Const DISP_E_NOTACOLLECTION = 2147614737
Const DISP_E_OVERFLOW = 2147614730
Const DISP_E_PARAMNOTFOUND = 2147614724
Const DISP_E_PARAMNOTOPTIONAL = 2147614735
Const DISP_E_TYPEMISMATCH = 2147614725
Const DISP_E_UNKNOWNINTERFACE = 2147614721
Const DISP_E_UNKNOWNLCID = 2147614732
Const DISP_E_UNKNOWNNAME = 2147614726
Const DKGRAY_BRUSH = 3
Const DLGC_BUTTON = 8192
Const DLGC_DEFPUSHBUTTON = 16
Const DLGC_HASSETSEL = 8
Const DLGC_RADIOBUTTON = 64
Const DLGC_STATIC = 256
Const DLGC_UNDEFPUSHBUTTON = 32
Const DLGC_WANTALLKEYS = 4
Const DLGC_WANTARROWS = 1
Const DLGC_WANTCHARS = 128
Const DLGC_WANTMESSAGE = 4
Const DLGC_WANTTAB = 2
Const DLGWINDOWEXTRA = 30

Const DM_COLLATE = 32768
Const DM_COLOR = 2048
Const DM_COPIES = 256
Const DM_COPY = 2
Const DM_DEFAULTSOURCE = 512
Const DM_DITHERTYPE = 268435456
Const DM_DUPLEX = 4096
Const DM_FORMNAME = 65536
Const DM_GETDEFID = WM_USER + 0
Const DM_GRAYSCALE = 1
Const DM_ICMINTENT = 67108864
Const DM_ICMMETHOD = 33554432
Const DM_INTERLACED = 2
Const DM_MEDIATYPE = 134217728
Const DM_MODIFY = 8
Const DM_ORIENTATION = 1
Const DM_OUT_BUFFER = DM_COPY
Const DM_PAPERLENGTH = 4
Const DM_PAPERSIZE = 2
Const DM_PAPERWIDTH = 8
Const DM_PRINTQUALITY = 1024
Const DM_PROMPT = 4
Const DM_IN_BUFFER = DM_MODIFY
Const DM_IN_PROMPT = DM_PROMPT
Const DM_RESERVED1 = 8388608
Const DM_RESERVED2 = 16777216
Const DM_SCALE = 16
Const DM_SETDEFID = WM_USER + 1
Const DM_SPECVERSION = 800
Const DM_TTOPTION = 16384
Const DM_UPDATE = 1
Const DM_YRESOLUTION = 8192
Const DM_OUT_DEFAULT = DM_UPDATE
Const DMBIN_AUTO = 7
Const DMBIN_CASSETTE = 14
Const DMBIN_ENVELOPE = 5
Const DMBIN_ENVMANUAL = 6
Const DMBIN_LARGECAPACITY = 11
Const DMBIN_LARGEFMT = 10
Const DMBIN_LAST = DMBIN_CASSETTE
Const DMBIN_LOWER = 2
Const DMBIN_MANUAL = 4
Const DMBIN_MIDDLE = 3
Const DMBIN_ONLYONE = 1
Const DMBIN_SMALLFMT = 9
Const DMBIN_TRACTOR = 8
Const DMBIN_UPPER = 1
Const DMBIN_USER = 256
Const DMCOLLATE_FALSE = 0
Const DMCOLLATE_TRUE = 1
Const DMCOLOR_COLOR = 2
Const DMCOLOR_MONOCHROME = 1
Const DMDITHER_COARSE = 2
Const DMDITHER_FINE = 3
Const DMDITHER_GRAYSCALE = 5
Const DMDITHER_LINEART = 4
Const DMDITHER_NONE = 1
Const DMDITHER_USER = 256
Const DMDUP_HORIZONTAL = 3
Const DMDUP_SIMPLEX = 1
Const DMDUP_VERTICAL = 2
Const DMICM_COLORMETRIC = 3
Const DMICM_CONTRAST = 2
Const DMICM_SATURATE = 1
Const DMICM_USER = 256
Const DMICMMETHOD_DEVICE = 4
Const DMICMMETHOD_DRIVER = 3
Const DMICMMETHOD_NONE = 1
Const DMICMMETHOD_SYSTEM = 2
Const DMICMMETHOD_USER = 256
Const DMLERR_ADVACKTIMEOUT = 16384
Const DMLERR_BUSY = 16385
Const DMLERR_DATAACKTIMEOUT = 16386
Const DMLERR_DLL_NOT_INITIALIZED = 16387
Const DMLERR_DLL_USAGE = 16388
Const DMLERR_EXECACKTIMEOUT = 16389
Const DMLERR_FIRST = 16384
Const DMLERR_INVALIDPARAMETER = 16390
Const DMLERR_LAST = 16401
Const DMLERR_LOW_MEMORY = 16391
Const DMLERR_MEMORY_ERROR = 16392
Const DMLERR_NO_CONV_ESTABLISHED = 16394
Const DMLERR_NO_ERROR = 0
Const DMLERR_NOTPROCESSED = 16393
Const DMLERR_POKEACKTIMEOUT = 16395
Const DMLERR_POSTMSG_FAILED = 16396
Const DMLERR_REENTRANCY = 16397
Const DMLERR_SERVER_DIED = 16398
Const DMLERR_SYS_ERROR = 16399
Const DMLERR_UNADVACKTIMEOUT = 16400
Const DMLERR_UNFOUND_QUEUE_ID = 16401
Const DMMEDIA_GLOSSY = 2
Const DMMEDIA_STANDARD = 1
Const DMMEDIA_TRANSPARENCY = 3
Const DMMEDIA_USER = 256
Const DMORIENT_LANDSCAPE = 2
Const DMORIENT_PORTRAIT = 1
Const DMPAPER_10X11 = 45
Const DMPAPER_10X14 = 16
Const DMPAPER_11X17 = 17
Const DMPAPER_15X11 = 46
Const DMPAPER_9X11 = 44
Const DMPAPER_A_PLUS = 57
Const DMPAPER_A2 = 66
Const DMPAPER_A3 = 8
Const DMPAPER_A3_EXTRA = 63
Const DMPAPER_A3_EXTRA_TRANSVERSE = 68
Const DMPAPER_A3_TRANSVERSE = 67
Const DMPAPER_A4 = 9
Const DMPAPER_A4_EXTRA = 53
Const DMPAPER_A4_PLUS = 60
Const DMPAPER_A4_TRANSVERSE = 55
Const DMPAPER_A4SMALL = 10
Const DMPAPER_A5 = 11
Const DMPAPER_A5_EXTRA = 64
Const DMPAPER_A5_TRANSVERSE = 61
Const DMPAPER_B_PLUS = 58
Const DMPAPER_B4 = 12
Const DMPAPER_B5 = 13
Const DMPAPER_B5_EXTRA = 65
Const DMPAPER_B5_TRANSVERSE = 62
Const DMPAPER_CSHEET = 24
Const DMPAPER_DSHEET = 25
Const DMPAPER_ENV_10 = 20
Const DMPAPER_ENV_11 = 21
Const DMPAPER_ENV_12 = 22
Const DMPAPER_ENV_14 = 23
Const DMPAPER_ENV_9 = 19
Const DMPAPER_ENV_B4 = 33
Const DMPAPER_ENV_B5 = 34
Const DMPAPER_ENV_B6 = 35
Const DMPAPER_ENV_C3 = 29
Const DMPAPER_ENV_C4 = 30
Const DMPAPER_ENV_C5 = 28
Const DMPAPER_ENV_C6 = 31
Const DMPAPER_ENV_C65 = 32
Const DMPAPER_ENV_DL = 27
Const DMPAPER_ENV_INVITE = 47
Const DMPAPER_ENV_ITALY = 36
Const DMPAPER_ENV_MONARCH = 37
Const DMPAPER_ENV_PERSONAL = 38
Const DMPAPER_ESHEET = 26
Const DMPAPER_EXECUTIVE = 7
Const DMPAPER_FANFOLD_LGL_GERMAN = 41
Const DMPAPER_FANFOLD_STD_GERMAN = 40
Const DMPAPER_FANFOLD_US = 39
Const DMPAPER_FOLIO = 14
Const DMPAPER_ISO_B4 = 42
Const DMPAPER_JAPANESE_POSTCARD = 43
Const DMPAPER_LAST = DMPAPER_FANFOLD_LGL_GERMAN
Const DMPAPER_LEDGER = 4
Const DMPAPER_LEGAL = 5
Const DMPAPER_LEGAL_EXTRA = 51
Const DMPAPER_LETTER = 1
Const DMPAPER_FIRST = DMPAPER_LETTER
Const DMPAPER_LETTER_EXTRA = 50
Const DMPAPER_LETTER_EXTRA_TRANSVERSE = 56
Const DMPAPER_LETTER_PLUS = 59
Const DMPAPER_LETTER_TRANSVERSE = 54
Const DMPAPER_LETTERSMALL = 2
Const DMPAPER_NOTE = 18
Const DMPAPER_QUARTO = 15
Const DMPAPER_RESERVED_48 = 48
Const DMPAPER_RESERVED_49 = 49
Const DMPAPER_STATEMENT = 6
Const DMPAPER_TABLOID = 3
Const DMPAPER_TABLOID_EXTRA = 52
Const DMPAPER_USER = 256
Const DMRES_DRAFT = -1
Const DMRES_HIGH = -4
Const DMRES_LOW = -2
Const DMRES_MEDIUM = -3
Const DMTT_BITMAP = 1
Const DMTT_DOWNLOAD = 2
Const DMTT_DOWNLOAD_OUTLINE = 4
Const DMTT_SUBDEV = 3
Const DN_DEFAULTPRN = 1
Const DNS_FILTEROFF = 8
Const DNS_FILTERON = 4
Const DNS_REGISTER = 1
Const DNS_UNREGISTER = 2
Const DOMAIN_ALIAS_RID_ACCOUNT_OPS = 548
Const DOMAIN_ALIAS_RID_ADMINS = 544
Const DOMAIN_ALIAS_RID_BACKUP_OPS = 551
Const DOMAIN_ALIAS_RID_GUESTS = 546
Const DOMAIN_ALIAS_RID_POWER_USERS = 547
Const DOMAIN_ALIAS_RID_PRINT_OPS = 550
Const DOMAIN_ALIAS_RID_REPLICATOR = 552
Const DOMAIN_ALIAS_RID_SYSTEM_OPS = 549
Const DOMAIN_ALIAS_RID_USERS = 545
Const DOMAIN_GROUP_RID_ADMINS = 512
Const DOMAIN_GROUP_RID_GUESTS = 514
Const DOMAIN_GROUP_RID_USERS = 513
Const DOMAIN_USER_RID_ADMIN = 500
Const DOMAIN_USER_RID_GUEST = 501
Const DONT_RESOLVE_DLL_REFERENCES = 1
Const DOUBLE_CLICK = 2
Const DOWNLOADFACE = 514
Const DOWNLOADHEADER = 4111
Const DRAFT_QUALITY = 1
Const DRAFTMODE = 7
Const DRAGDROP_E_ALREADYREGISTERED = 2147746049
Const DRAGDROP_E_FIRST = 2147746048
Const DRAGDROP_E_INVALIDHWND = 2147746050
Const DRAGDROP_E_LAST = 2147746063
Const DRAGDROP_E_NOTREGISTERED = 2147746048
Const DRAGDROP_S_CANCEL = 262401
Const DRAGDROP_S_DROP = 262400
Const DRAGDROP_S_FIRST = 262400
Const DRAGDROP_S_LAST = 262415
Const DRAGDROP_S_USEDEFAULTCURSORS = 262402
Const DRAWPATTERNRECT = 25
Const DRIVE_CDROM = 5
Const DRIVE_FIXED = 3
Const DRIVE_RAMDISK = 6
Const DRIVE_REMOTE = 4
Const DRIVE_REMOVABLE = 2
Const DRIVERVERSION = 0
Const DRV_CLOSE = 4
Const DRV_CONFIGURE = 7
Const DRV_DISABLE = 5
Const DRV_ENABLE = 2
Const DRV_EXITSESSION = 11
Const DRV_FREE = 6
Const DRV_INSTALL = 9
Const DRV_LOAD = 1
Const DRV_OPEN = 3
Const DRV_POWER = 15
Const DRV_QUERYCONFIGURE = 8
Const DRV_REMOVE = 10
Const DRV_RESERVED = 2048
Const DRV_MCI_FIRST = DRV_RESERVED
Const DRV_MCI_LAST = DRV_RESERVED + 4095
Const DRV_USER = 16384
Const DRVCNF_CANCEL = 0
Const DRVCNF_OK = 1
Const DRVCNF_RESTART = 2
Const DRW_BDIAGONAL = 3
Const DRW_BDIAGONAL1 = 7
Const DRW_CROSS = 4
Const DRW_DENSE1 = 9
Const DRW_DENSE2 = 10
Const DRW_DENSE3 = 11
Const DRW_DENSE4 = 12
Const DRW_DENSE5 = 13
Const DRW_DENSE6 = 14
Const DRW_DENSE7 = 15
Const DRW_DENSE8 = 16
Const DRW_DIAGCROSS = 5
Const DRW_DITHEREDBKCLR = 24
Const DRW_DITHEREDCLR = 20
Const DRW_DITHEREDTEXTCLR = 22
Const DRW_FDIAGONAL = 2
Const DRW_FDIAGONAL1 = 6
Const DRW_HALFTONE = 18
Const DRW_HORIZONTAL = 0
Const DRW_NOSHADE = 17
Const DRW_SOLID = 8
Const DRW_SOLIDBKCLR = 23
Const DRW_SOLIDCLR = 19
Const DRW_SOLIDTEXTCLR = 21
Const DRW_VERTICAL = 1
Const DS_ABSALIGN = 1
Const DS_LOCALEDIT = 32
Const DS_MODALFRAME = 128
Const DS_NOIDLEMSG = 256
Const DS_SETFONT = 64
Const DS_SETFOREGROUND = 512
Const DS_SYSMODAL = 2
Const DSTINVERT = 5570569
Const DT_BOTTOM = 8
Const DT_CALCRECT = 1024
Const DT_CENTER = 1
Const DT_CHARSTREAM = 4
Const DT_DISPFILE = 6
Const DT_EXPANDTABS = 64
Const DT_EXTERNALLEADING = 512
Const DT_INTERNAL = 4096
Const DT_LEFT = 0
Const DT_METAFILE = 5
Const DT_NOCLIP = 256
Const DT_NOPREFIX = 2048
Const DT_PLOTTER = 0
Const DT_RASCAMERA = 3
Const DT_RASDISPLAY = 1
Const DT_RASPRINTER = 2
Const DT_RIGHT = 2
Const DT_SINGLELINE = 32
Const DT_TABSTOP = 128
Const DT_TOP = 0
Const DT_VCENTER = 4
Const DT_WORDBREAK = 16
Const DTR_CONTROL_DISABLE = 0
Const DTR_CONTROL_ENABLE = 1
Const DTR_CONTROL_HANDSHAKE = 2
Const DUPLICATE = 6
Const DUPLICATE_CLOSE_SOURCE = 1
Const DUPLICATE_DEREG = 7
Const DUPLICATE_SAME_ACCESS = 2
Const DV_E_CLIPFORMAT = 2147745898
Const DV_E_DVASPECT = 2147745899
Const DV_E_DVTARGETDEVICE = 2147745893
Const DV_E_DVTARGETDEVICE_SIZE = 2147745900
Const DV_E_FORMATETC = 2147745892
Const DV_E_LINDEX = 2147745896
Const DV_E_NOIVIEWOBJECT = 2147745901
Const DV_E_STATDATA = 2147745895
Const DV_E_STGMEDIUM = 2147745894
Const DV_E_TYMED = 2147745897
Const DWL_DLGPROC = 4
Const DWL_MSGRETURN = 0
Const DWL_USER = 8
Const E_ABORT = 2147500036
Const E_ACCESSDENIED = 2147942405
Const E_FAIL = 2147500037
Const E_HANDLE = 2147942406
Const E_INVALIDARG = 2147942487
Const E_NOINTERFACE = 2147500034
Const E_NOTIMPL = 2147500033
Const E_OUTOFMEMORY = 2147942414
Const E_POINTER = 2147500035
Const E_UNEXPECTED = 2147549183
Const EASTEUROPE_CHARSET = 238
Const EC_ENABLEALL = 0
Const EC_QUERYWAITING = 2
Const edt1 = 1152
Const edt10 = 1161
Const edt11 = 1162
Const edt12 = 1163
Const edt13 = 1164
Const edt14 = 1165
Const edt15 = 1166
Const edt16 = 1167
Const edt2 = 1153
Const edt3 = 1154
Const edt4 = 1155
Const edt5 = 1156
Const edt6 = 1157
Const edt7 = 1158
Const edt8 = 1159
Const edt9 = 1160
Const EIRESID = -1
Const ELF_CULTURE_LATIN = 0
Const ELF_VENDOR_SIZE = 4
Const ELF_VERSION = 0
Const EM_CANUNDO = 198
Const EM_EMPTYUNDOBUFFER = 205
Const EM_FMTLINES = 200
Const EM_GETFIRSTVISIBLELINE = 206
Const EM_GETHANDLE = 189
Const EM_GETLINE = 196
Const EM_GETLINECOUNT = 186
Const EM_GETMODIFY = 184
Const EM_GETPASSWORDCHAR = 210
Const EM_GETRECT = 178
Const EM_GETSEL = 176
Const EM_GETTHUMB = 190
Const EM_GETWORDBREAKPROC = 209
Const EM_LIMITTEXT = 197
Const EM_LINEFROMCHAR = 201
Const EM_LINEINDEX = 187
Const EM_LINELENGTH = 193
Const EM_LINESCROLL = 182
Const EM_REPLACESEL = 194
Const EM_SCROLL = 181
Const EM_SCROLLCARET = 183
Const EM_SETHANDLE = 188
Const EM_SETMODIFY = 185
Const EM_SETPASSWORDCHAR = 204
Const EM_SETREADONLY = 207
Const EM_SETRECT = 179
Const EM_SETRECTNP = 180
Const EM_SETSEL = 177
Const EM_SETTABSTOPS = 203
Const EM_SETWORDBREAKPROC = 208
Const EM_UNDO = 199
Const EMR_ABORTPATH = 68
Const EMR_ANGLEARC = 41
Const EMR_ARC = 45
Const EMR_ARCTO = 55
Const EMR_BEGINPATH = 59
Const EMR_BITBLT = 76
Const EMR_CHORD = 46
Const EMR_CLOSEFIGURE = 61
Const EMR_CREATEBRUSHINDIRECT = 39
Const EMR_CREATECOLORSPACE = 99
Const EMR_CREATEDIBPATTERNBRUSHPT = 94
Const EMR_CREATEMONOBRUSH = 93
Const EMR_CREATEPALETTE = 49
Const EMR_CREATEPEN = 38
Const EMR_DELETECOLORSPACE = 101
Const EMR_DELETEOBJECT = 40
Const EMR_ELLIPSE = 42
Const EMR_ENDPATH = 60
Const EMR_EOF = 14
Const EMR_EXCLUDECLIPRECT = 29
Const EMR_EXTCREATEFONTINDIRECTW = 82
Const EMR_EXTCREATEPEN = 95
Const EMR_EXTFLOODFILL = 53
Const EMR_EXTSELECTCLIPRGN = 75
Const EMR_EXTTEXTOUTA = 83
Const EMR_EXTTEXTOUTW = 84
Const EMR_FILLPATH = 62
Const EMR_FILLRGN = 71
Const EMR_FLATTENPATH = 65
Const EMR_FRAMERGN = 72
Const EMR_GDICOMMENT = 70
Const EMR_HEADER = 1
Const EMR_INTERSECTCLIPRECT = 30
Const EMR_INVERTRGN = 73
Const EMR_LINETO = 54
Const EMR_MASKBLT = 78
Const EMR_MAX = 97
Const EMR_MIN = 1
Const EMR_MODIFYWORLDTRANSFORM = 36
Const EMR_MOVETOEX = 27
Const EMR_OFFSETCLIPRGN = 26
Const EMR_PAINTRGN = 74
Const EMR_PIE = 47
Const EMR_PLGBLT = 79
Const EMR_POLYBEZIER = 2
Const EMR_POLYBEZIER16 = 85
Const EMR_POLYBEZIERTO = 5
Const EMR_POLYBEZIERTO16 = 88
Const EMR_POLYDRAW = 56
Const EMR_POLYDRAW16 = 92
Const EMR_POLYGON = 3
Const EMR_POLYGON16 = 86
Const EMR_POLYLINE = 4
Const EMR_POLYLINE16 = 87
Const EMR_POLYLINETO = 6
Const EMR_POLYLINETO16 = 89
Const EMR_POLYPOLYGON = 8
Const EMR_POLYPOLYGON16 = 91
Const EMR_POLYPOLYLINE = 7
Const EMR_POLYPOLYLINE16 = 90
Const EMR_POLYTEXTOUTA = 96
Const EMR_POLYTEXTOUTW = 97
Const EMR_REALIZEPALETTE = 52
Const EMR_RECTANGLE = 43
Const EMR_RESIZEPALETTE = 51
Const EMR_RESTOREDC = 34
Const EMR_ROUNDRECT = 44
Const EMR_SAVEDC = 33
Const EMR_SCALEVIEWPORTEXTEX = 31
Const EMR_SCALEWINDOWEXTEX = 32
Const EMR_SELECTCLIPPATH = 67
Const EMR_SELECTOBJECT = 37
Const EMR_SELECTPALETTE = 48
Const EMR_SETARCDIRECTION = 57
Const EMR_SETBKCOLOR = 25
Const EMR_SETBKMODE = 18
Const EMR_SETBRUSHORGEX = 13
Const EMR_SETCOLORADJUSTMENT = 23
Const EMR_SETCOLORSPACE = 100
Const EMR_SETDIBITSTODEVICE = 80
Const EMR_SETICMMODE = 98
Const EMR_SETMAPMODE = 17
Const EMR_SETMAPPERFLAGS = 16
Const EMR_SETMETARGN = 28
Const EMR_SETMITERLIMIT = 58
Const EMR_SETPALETTEENTRIES = 50
Const EMR_SETPIXELV = 15
Const EMR_SETPOLYFILLMODE = 19
Const EMR_SETROP2 = 20
Const EMR_SETSTRETCHBLTMODE = 21
Const EMR_SETTEXTALIGN = 22
Const EMR_SETTEXTCOLOR = 24
Const EMR_SETVIEWPORTEXTEX = 11
Const EMR_SETVIEWPORTORGEX = 12
Const EMR_SETWINDOWEXTEX = 9
Const EMR_SETWINDOWORGEX = 10
Const EMR_SETWORLDTRANSFORM = 35
Const EMR_STRETCHBLT = 77
Const EMR_STRETCHDIBITS = 81
Const EMR_STROKEANDFILLPATH = 63
Const EMR_STROKEPATH = 64
Const EMR_WIDENPATH = 66
Const EN_CHANGE = 768
Const EN_ERRSPACE = 1280
Const EN_HSCROLL = 1537
Const EN_KILLFOCUS = 512
Const EN_MAXTEXT = 1281
Const EN_SETFOCUS = 256
Const EN_UPDATE = 1024
Const EN_VSCROLL = 1538
Const ENABLE_ECHO_INPUT = 4
Const ENABLE_LINE_INPUT = 2
Const ENABLE_MOUSE_INPUT = 16
Const ENABLE_PROCESSED_INPUT = 1
Const ENABLE_PROCESSED_OUTPUT = 1
Const ENABLE_WINDOW_INPUT = 8
Const ENABLE_WRAP_AT_EOL_OUTPUT = 2
Const ENABLEDUPLEX = 28
Const ENABLEPAIRKERNING = 769
Const ENABLERELATIVEWIDTHS = 768
Const ENCAPSULATED_POSTSCRIPT = 4116
Const END_PATH = 4098
Const EndDocC = 11
Const ENHANCED_KEY = 256
Const ENHMETA_SIGNATURE = 1179469088
Const ENHMETA_STOCK_OBJECT = 2147483648
Const ENUM_ALL_CALENDARS = 65535
Const ENUM_E_FIRST = 2147746224
Const ENUM_E_LAST = 2147746239
Const ENUM_S_FIRST = 262576
Const ENUM_S_LAST = 262591
Const ENUMPAPERBINS = 31
Const ENUMPAPERMETRICS = 34
Const EPSPRINTING = 33
Const EPT_S_CANT_CREATE = 1899
Const EPT_S_CANT_PERFORM_OP = 1752
Const EPT_S_INVALID_ENTRY = 1751
Const EPT_S_NOT_REGISTERED = 1753
Const ERROR_ACCESS_DENIED = 5
Const ERROR_ACCOUNT_DISABLED = 1331
Const ERROR_ACCOUNT_EXPIRED = 1793
Const ERROR_ACCOUNT_RESTRICTION = 1327
Const ERROR_ADAP_HDW_ERR = 57
Const ERROR_ALIAS_EXISTS = 1379
Const ERROR_ALLOTTED_SPACE_EXCEEDED = 1344
Const ERROR_ALREADY_ASSIGNED = 85
Const ERROR_ALREADY_EXISTS = 183
Const ERROR_ALREADY_RUNNING_LKG = 1074
Const ERROR_ALREADY_WAITING = 1904
Const ERROR_ARENA_TRASHED = 7
Const ERROR_ARITHMETIC_OVERFLOW = 534
Const ERROR_ATOMIC_LOCKS_NOT_SUPPORTED = 174
Const ERROR_AUTODATASEG_EXCEEDS_64k = 199
Const ERROR_BAD_ARGUMENTS = 160
Const ERROR_BAD_COMMAND = 22
Const ERROR_BAD_DESCRIPTOR_FORMAT = 1361
Const ERROR_BAD_DEV_TYPE = 66
Const ERROR_BAD_DEVICE = 1200
Const ERROR_BAD_DRIVER = 2001
Const ERROR_BAD_DRIVER_LEVEL = 119
Const ERROR_BAD_ENVIRONMENT = 10
Const ERROR_BAD_EXE_FORMAT = 193
Const ERROR_BAD_FORMAT = 11
Const ERROR_BAD_IMPERSONATION_LEVEL = 1346
Const ERROR_BAD_INHERITANCE_ACL = 1340
Const ERROR_BAD_LENGTH = 24
Const ERROR_BAD_LOGON_SESSION_STATE = 1365
Const ERROR_BAD_NET_NAME = 67
Const ERROR_BAD_NET_RESP = 58
Const ERROR_BAD_NETPATH = 53
Const ERROR_BAD_PATHNAME = 161
Const ERROR_BAD_PIPE = 230
Const ERROR_BAD_PROFILE = 1206
Const ERROR_BAD_PROVIDER = 1204
Const ERROR_BAD_REM_ADAP = 60
Const ERROR_BAD_THREADID_ADDR = 159
Const ERROR_BAD_TOKEN_TYPE = 1349
Const ERROR_BAD_UNIT = 20
Const ERROR_BAD_USERNAME = 2202
Const ERROR_BAD_VALIDATION_CLASS = 1348
Const ERROR_BADDB = 1009
Const ERROR_BADKEY = 1010
Const ERROR_BEGINNING_OF_MEDIA = 1102
Const ERROR_BOOT_ALREADY_ACCEPTED = 1076
Const ERROR_BROKEN_PIPE = 109
Const ERROR_BUFFER_OVERFLOW = 111
Const ERROR_BUS_RESET = 1111
Const ERROR_BUSY = 170
Const ERROR_BUSY_DRIVE = 142
Const ERROR_CALL_NOT_IMPLEMENTED = 120
Const ERROR_CAN_NOT_COMPLETE = 1003
Const ERROR_CAN_NOT_DEL_LOCAL_WINS = 4001
Const ERROR_CANCEL_VIOLATION = 173
Const ERROR_CANNOT_COPY = 266
Const ERROR_CANNOT_FIND_WND_CLASS = 1407
Const ERROR_CANNOT_IMPERSONATE = 1368
Const ERROR_CANNOT_MAKE = 82
Const ERROR_CANNOT_OPEN_PROFILE = 1205
Const ERROR_CANT_ACCESS_DOMAIN_INFO = 1351
Const ERROR_CANT_DISABLE_MANDATORY = 1310
Const ERROR_CANT_OPEN_ANONYMOUS = 1347
Const ERROR_CANTOPEN = 1011
Const ERROR_CANTREAD = 1012
Const ERROR_CANTWRITE = 1013
Const ERROR_CHILD_MUST_BE_VOLATILE = 1021
Const ERROR_CHILD_NOT_COMPLETE = 129
Const ERROR_CHILD_WINDOW_MENU = 1436
Const ERROR_CIRCULAR_DEPENDENCY = 1059
Const ERROR_CLASS_ALREADY_EXISTS = 1410
Const ERROR_CLASS_DOES_NOT_EXIST = 1411
Const ERROR_CLASS_HAS_WINDOWS = 1412
Const ERROR_CLIPBOARD_NOT_OPEN = 1418
Const ERROR_CLIPPING_NOT_SUPPORTED = 2005
Const ERROR_CONNECTION_UNAVAIL = 1201
Const ERROR_CONTROL_ID_NOT_FOUND = 1421
Const ERROR_COUNTER_TIMEOUT = 1121
Const ERROR_CRC = 23
Const ERROR_CURRENT_DIRECTORY = 16
Const ERROR_DATABASE_DOES_NOT_EXIST = 1065
Const ERROR_DC_NOT_FOUND = 1425
Const ERROR_DEPENDENT_SERVICES_RUNNING = 1051
Const ERROR_DESTROY_OBJECT_OF_OTHER_THREAD = 1435
Const ERROR_DEV_NOT_EXIST = 55
Const ERROR_DEVICE_ALREADY_REMEMBERED = 1202
Const ERROR_DEVICE_IN_USE = 2404
Const ERROR_DEVICE_NOT_PARTITIONED = 1107
Const ERROR_DIR_NOT_EMPTY = 145
Const ERROR_DIR_NOT_ROOT = 144
Const ERROR_DIRECT_ACCESS_HANDLE = 130
Const ERROR_DIRECTORY = 267
Const ERROR_DISCARDED = 157
Const ERROR_DISK_CHANGE = 107
Const ERROR_DISK_CORRUPT = 1393
Const ERROR_DISK_FULL = 112
Const ERROR_DISK_OPERATION_FAILED = 1127
Const ERROR_DISK_RECALIBRATE_FAILED = 1126
Const ERROR_DISK_RESET_FAILED = 1128
Const ERROR_DLL_INIT_FAILED = 1114
Const ERROR_DOMAIN_EXISTS = 1356
Const ERROR_DOMAIN_LIMIT_EXCEEDED = 1357
Const ERROR_DOMAIN_TRUST_INCONSISTENT = 1810
Const ERROR_DRIVE_LOCKED = 108
Const ERROR_DUP_DOMAINNAME = 1221
Const ERROR_DUP_NAME = 52
Const ERROR_DUPLICATE_SERVICE_NAME = 1078
Const ERROR_DYNLINK_FROM_INVALID_RING = 196
Const ERROR_EA_ACCESS_DENIED = 994
Const ERROR_EA_FILE_CORRUPT = 276
Const ERROR_EA_LIST_INCONSISTENT = 255
Const ERROR_EA_TABLE_FULL = 277
Const ERROR_EAS_DIDNT_FIT = 275
Const ERROR_EAS_NOT_SUPPORTED = 282
Const ERROR_END_OF_MEDIA = 1100
Const ERROR_ENVVAR_NOT_FOUND = 203
Const ERROR_EOM_OVERFLOW = 1129
Const ERROR_EVENTLOG_CANT_START = 1501
Const ERROR_EVENTLOG_FILE_CHANGED = 1503
Const ERROR_EVENTLOG_FILE_CORRUPT = 1500
Const ERROR_EXCEPTION_IN_SERVICE = 1064
Const ERROR_EXCL_SEM_ALREADY_OWNED = 101
Const ERROR_EXE_MARKED_INVALID = 192
Const ERROR_EXTENDED_ERROR = 1208
Const ERROR_FAIL_I24 = 83
Const ERROR_FAILED_SERVICE_CONTROLLER_CONNECT = 1063
Const ERROR_FILE_CORRUPT = 1392
Const ERROR_FILE_EXISTS = 80
Const ERROR_FILE_INVALID = 1006
Const ERROR_FILE_NOT_FOUND = 2
Const ERROR_FILEMARK_DETECTED = 1101
Const ERROR_FILENAME_EXCED_RANGE = 206
Const ERROR_FLOPPY_BAD_REGISTERS = 1125
Const ERROR_FLOPPY_ID_MARK_NOT_FOUND = 1122
Const ERROR_FLOPPY_UNKNOWN_ERROR = 1124
Const ERROR_FLOPPY_WRONG_CYLINDER = 1123
Const ERROR_FULL_BACKUP = 4004
Const ERROR_FULLSCREEN_MODE = 1007
Const ERROR_GEN_FAILURE = 31
Const ERROR_GENERIC_NOT_MAPPED = 1360
Const ERROR_GROUP_EXISTS = 1318
Const ERROR_HANDLE_DISK_FULL = 39
Const ERROR_HANDLE_EOF = 38
Const ERROR_HOOK_NEEDS_HMOD = 1428
Const ERROR_HOOK_NOT_INSTALLED = 1431
Const ERROR_HOTKEY_ALREADY_REGISTERED = 1409
Const ERROR_HOTKEY_NOT_REGISTERED = 1419
Const ERROR_HWNDS_HAVE_DIFF_PARENT = 1441
Const ERROR_ILL_FORMED_PASSWORD = 1324
Const ERROR_INC_BACKUP = 4003
Const ERROR_INFLOOP_IN_RELOC_CHAIN = 202
Const ERROR_INSUFFICIENT_BUFFER = 122
Const ERROR_INTERNAL_DB_CORRUPTION = 1358
Const ERROR_INTERNAL_DB_ERROR = 1383
Const ERROR_INTERNAL_ERROR = 1359
Const ERROR_INVALID_ACCEL_HANDLE = 1403
Const ERROR_INVALID_ACCESS = 12
Const ERROR_INVALID_ACCOUNT_NAME = 1315
Const ERROR_INVALID_ACL = 1336
Const ERROR_INVALID_ADDRESS = 487
Const ERROR_INVALID_AT_INTERRUPT_TIME = 104
Const ERROR_INVALID_BLOCK = 9
Const ERROR_INVALID_BLOCK_LENGTH = 1106
Const ERROR_INVALID_CATEGORY = 117
Const ERROR_INVALID_COMBOBOX_MESSAGE = 1422
Const ERROR_INVALID_COMPUTERNAME = 1210
Const ERROR_INVALID_CURSOR_HANDLE = 1402
Const ERROR_INVALID_DATA = 13
Const ERROR_INVALID_DATATYPE = 1804
Const ERROR_INVALID_DOMAIN_ROLE = 1354
Const ERROR_INVALID_DOMAIN_STATE = 1353
Const ERROR_INVALID_DOMAINNAME = 1212
Const ERROR_INVALID_DRIVE = 15
Const ERROR_INVALID_DWP_HANDLE = 1405
Const ERROR_INVALID_EA_HANDLE = 278
Const ERROR_INVALID_EA_NAME = 254
Const ERROR_INVALID_EDIT_HEIGHT = 1424
Const ERROR_INVALID_ENVIRONMENT = 1805
Const ERROR_INVALID_EVENT_COUNT = 151
Const ERROR_INVALID_EVENTNAME = 1211
Const ERROR_INVALID_EXE_SIGNATURE = 191
Const ERROR_INVALID_FILTER_PROC = 1427
Const ERROR_INVALID_FLAG_NUMBER = 186
Const ERROR_INVALID_FLAGS = 1004
Const ERROR_INVALID_FORM_NAME = 1902
Const ERROR_INVALID_FORM_SIZE = 1903
Const ERROR_INVALID_FUNCTION = 1
Const ERROR_INVALID_GROUP_ATTRIBUTES = 1345
Const ERROR_INVALID_GROUPNAME = 1209
Const ERROR_INVALID_GW_COMMAND = 1443
Const ERROR_INVALID_HANDLE = 6
Const ERROR_INVALID_HOOK_FILTER = 1426
Const ERROR_INVALID_HOOK_HANDLE = 1404
Const ERROR_INVALID_ICON_HANDLE = 1414
Const ERROR_INVALID_ID_AUTHORITY = 1343
Const ERROR_INVALID_INDEX = 1413
Const ERROR_INVALID_LB_MESSAGE = 1432
Const ERROR_INVALID_LEVEL = 124
Const ERROR_INVALID_LIST_FORMAT = 153
Const ERROR_INVALID_LOGON_HOURS = 1328
Const ERROR_INVALID_LOGON_TYPE = 1367
Const ERROR_INVALID_MEMBER = 1388
Const ERROR_INVALID_MENU_HANDLE = 1401
Const ERROR_INVALID_MESSAGE = 1002
Const ERROR_INVALID_MESSAGEDEST = 1218
Const ERROR_INVALID_MESSAGENAME = 1217
Const ERROR_INVALID_MINALLOCSIZE = 195
Const ERROR_INVALID_MODULETYPE = 190
Const ERROR_INVALID_MSGBOX_STYLE = 1438
Const ERROR_INVALID_NAME = 123
Const ERROR_INVALID_NETNAME = 1214
Const ERROR_INVALID_ORDINAL = 182
Const ERROR_INVALID_OWNER = 1307
Const ERROR_INVALID_PARAMETER = 87
Const ERROR_INVALID_PASSWORD = 86
Const ERROR_INVALID_PASSWORDNAME = 1216
Const ERROR_INVALID_PIXEL_FORMAT = 2000
Const ERROR_INVALID_PRIMARY_GROUP = 1308
Const ERROR_INVALID_PRINTER_COMMAND = 1803
Const ERROR_INVALID_PRINTER_NAME = 1801
Const ERROR_INVALID_PRINTER_STATE = 1906
Const ERROR_INVALID_PRIORITY = 1800
Const ERROR_INVALID_SCROLLBAR_RANGE = 1448
Const ERROR_INVALID_SECURITY_DESCR = 1338
Const ERROR_INVALID_SEGDPL = 198
Const ERROR_INVALID_SEGMENT_NUMBER = 180
Const ERROR_INVALID_SEPARATOR_FILE = 1799
Const ERROR_INVALID_SERVER_STATE = 1352
Const ERROR_INVALID_SERVICE_ACCOUNT = 1057
Const ERROR_INVALID_SERVICE_CONTROL = 1052
Const ERROR_INVALID_SERVICE_LOCK = 1071
Const ERROR_INVALID_SERVICENAME = 1213
Const ERROR_INVALID_SHARENAME = 1215
Const ERROR_INVALID_SHOWWIN_COMMAND = 1449
Const ERROR_INVALID_SID = 1337
Const ERROR_INVALID_SIGNAL_NUMBER = 209
Const ERROR_INVALID_SPI_VALUE = 1439
Const ERROR_INVALID_STACKSEG = 189
Const ERROR_INVALID_STARTING_CODESEG = 188
Const ERROR_INVALID_SUB_AUTHORITY = 1335
Const ERROR_INVALID_TARGET_HANDLE = 114
Const ERROR_INVALID_THREAD_ID = 1444
Const ERROR_INVALID_TIME = 1901
Const ERROR_INVALID_USER_BUFFER = 1784
Const ERROR_INVALID_VERIFY_SWITCH = 118
Const ERROR_INVALID_WINDOW_HANDLE = 1400
Const ERROR_INVALID_WINDOW_STYLE = 2002
Const ERROR_INVALID_WORKSTATION = 1329
Const ERROR_IO_DEVICE = 1117
Const ERROR_IO_INCOMPLETE = 996
Const ERROR_IO_PENDING = 997
Const ERROR_IOPL_NOT_ENABLED = 197
Const ERROR_IRQ_BUSY = 1119
Const ERROR_IS_JOIN_PATH = 147
Const ERROR_IS_JOIN_TARGET = 133
Const ERROR_IS_JOINED = 134
Const ERROR_IS_SUBST_PATH = 146
Const ERROR_IS_SUBST_TARGET = 149
Const ERROR_IS_SUBSTED = 135
Const ERROR_ITERATED_DATA_EXCEEDS_64k = 194
Const ERROR_JOIN_TO_JOIN = 138
Const ERROR_JOIN_TO_SUBST = 140
Const ERROR_JOURNAL_HOOK_SET = 1430
Const ERROR_KEY_DELETED = 1018
Const ERROR_KEY_HAS_CHILDREN = 1020
Const ERROR_LABEL_TOO_LONG = 154
Const ERROR_LAST_ADMIN = 1322
Const ERROR_LB_WITHOUT_TABSTOPS = 1434
Const ERROR_LISTBOX_ID_NOT_FOUND = 1416
Const ERROR_LM_CROSS_ENCRYPTION_REQUIRED = 1390
Const ERROR_LOCAL_USER_SESSION_KEY = 1303
Const ERROR_LOCK_FAILED = 167
Const ERROR_LOCK_VIOLATION = 33
Const ERROR_LOCKED = 212
Const ERROR_LOG_FILE_FULL = 1502
Const ERROR_LOGON_FAILURE = 1326
Const ERROR_LOGON_NOT_GRANTED = 1380
Const ERROR_LOGON_SESSION_COLLISION = 1366
Const ERROR_LOGON_SESSION_EXISTS = 1363
Const ERROR_LOGON_TYPE_NOT_GRANTED = 1385
Const ERROR_LUIDS_EXHAUSTED = 1334
Const ERROR_MAPPED_ALIGNMENT = 1132
Const ERROR_MAX_THRDS_REACHED = 164
Const ERROR_MEDIA_CHANGED = 1110
Const ERROR_MEMBER_IN_ALIAS = 1378
Const ERROR_MEMBER_IN_GROUP = 1320
Const ERROR_MEMBER_NOT_IN_ALIAS = 1377
Const ERROR_MEMBER_NOT_IN_GROUP = 1321
Const ERROR_MEMBERS_PRIMARY_GROUP = 1374
Const ERROR_META_EXPANSION_TOO_LONG = 208
Const ERROR_METAFILE_NOT_SUPPORTED = 2003
Const ERROR_MOD_NOT_FOUND = 126
Const ERROR_MORE_DATA = 234
Const ERROR_MORE_WRITES = 1120
Const ERROR_MR_MID_NOT_FOUND = 317
Const ERROR_NEGATIVE_SEEK = 131
Const ERROR_NESTING_NOT_ALLOWED = 215
Const ERROR_NET_WRITE_FAULT = 88
Const ERROR_NETLOGON_NOT_STARTED = 1792
Const ERROR_NETNAME_DELETED = 64
Const ERROR_NETWORK_ACCESS_DENIED = 65
Const ERROR_NETWORK_BUSY = 54
Const ERROR_NO_BROWSER_SERVERS_FOUND = 6118
Const ERROR_NO_DATA = 232
Const ERROR_NO_DATA_DETECTED = 1104
Const ERROR_NO_IMPERSONATION_TOKEN = 1309
Const ERROR_NO_INHERITANCE = 1391
Const ERROR_NO_LOG_SPACE = 1019
Const ERROR_NO_LOGON_SERVERS = 1311
Const ERROR_NO_MEDIA_IN_DRIVE = 1112
Const ERROR_NO_MORE_FILES = 18
Const ERROR_NO_MORE_ITEMS = 259
Const ERROR_NO_MORE_SEARCH_HANDLES = 113
Const ERROR_NO_NET_OR_BAD_PATH = 1203
Const ERROR_NO_NETWORK = 1222
Const ERROR_NO_PROC_SLOTS = 89
Const ERROR_NO_QUOTAS_FOR_ACCOUNT = 1302
Const ERROR_NO_SCROLLBARS = 1447
Const ERROR_NO_SECURITY_ON_OBJECT = 1350
Const ERROR_NO_SHUTDOWN_IN_PROGRESS = 1116
Const ERROR_NO_SIGNAL_SENT = 205
Const ERROR_NO_SPOOL_SPACE = 62
Const ERROR_NO_SUCH_ALIAS = 1376
Const ERROR_NO_SUCH_DOMAIN = 1355
Const ERROR_NO_SUCH_GROUP = 1319
Const ERROR_NO_SUCH_LOGON_SESSION = 1312
Const ERROR_NO_SUCH_MEMBER = 1387
Const ERROR_NO_SUCH_PACKAGE = 1364
Const ERROR_NO_SUCH_PRIVILEGE = 1313
Const ERROR_NO_SUCH_USER = 1317
Const ERROR_NO_SYSTEM_MENU = 1437
Const ERROR_NO_TOKEN = 1008
Const ERROR_NO_TRUST_LSA_SECRET = 1786
Const ERROR_NO_TRUST_SAM_ACCOUNT = 1787
Const ERROR_NO_UNICODE_TRANSLATION = 1113
Const ERROR_NO_USER_SESSION_KEY = 1394
Const ERROR_NO_VOLUME_LABEL = 125
Const ERROR_NO_WILDCARD_CHARACTERS = 1417
Const ERROR_NOACCESS = 998
Const ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT = 1807
Const ERROR_NOLOGON_SERVER_TRUST_ACCOUNT = 1809
Const ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT = 1808
Const ERROR_NON_MDICHILD_WINDOW = 1445
Const ERROR_NONE_MAPPED = 1332
Const ERROR_NOT_ALL_ASSIGNED = 1300
Const ERROR_NOT_CHILD_WINDOW = 1442
Const ERROR_NOT_CONNECTED = 2250
Const ERROR_NOT_CONTAINER = 1207
Const ERROR_NOT_DOS_DISK = 26
Const ERROR_NOT_ENOUGH_MEMORY = 8
Const ERROR_NOT_ENOUGH_QUOTA = 1816
Const ERROR_NOT_ENOUGH_SERVER_MEMORY = 1130
Const ERROR_NOT_JOINED = 136
Const ERROR_NOT_LOCKED = 158
Const ERROR_NOT_LOGON_PROCESS = 1362
Const ERROR_NOT_OWNER = 288
Const ERROR_NOT_READY = 21
Const ERROR_NOT_REGISTRY_FILE = 1017
Const ERROR_NOT_SAME_DEVICE = 17
Const ERROR_NOT_SUBSTED = 137
Const ERROR_NOT_SUPPORTED = 50
Const ERROR_NOTIFY_ENUM_DIR = 1022
Const ERROR_NT_CROSS_ENCRYPTION_REQUIRED = 1386
Const ERROR_NULL_LM_PASSWORD = 1304
Const ERROR_OPEN_FAILED = 110
Const ERROR_OPEN_FILES = 2401
Const ERROR_OPERATION_ABORTED = 995
Const ERROR_OUT_OF_PAPER = 28
Const ERROR_OUT_OF_STRUCTURES = 84
Const ERROR_OUTOFMEMORY = 14
Const ERROR_PARTITION_FAILURE = 1105
Const ERROR_PASSWORD_EXPIRED = 1330
Const ERROR_PASSWORD_RESTRICTION = 1325
Const ERROR_PATH_BUSY = 148
Const ERROR_PATH_NOT_FOUND = 3
Const ERROR_PIPE_BUSY = 231
Const ERROR_PIPE_CONNECTED = 535
Const ERROR_PIPE_LISTENING = 536
Const ERROR_PIPE_NOT_CONNECTED = 233
Const ERROR_POPUP_ALREADY_ACTIVE = 1446
Const ERROR_POSSIBLE_DEADLOCK = 1131
Const ERROR_PRINT_CANCELLED = 63
Const ERROR_PRINT_MONITOR_ALREADY_INSTALLED = 3006
Const ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED = 3005
Const ERROR_PRINTER_ALREADY_EXISTS = 1802
Const ERROR_PRINTER_DELETED = 1905
Const ERROR_PRINTER_DRIVER_ALREADY_INSTALLED = 1795
Const ERROR_PRINTER_DRIVER_IN_USE = 3001
Const ERROR_PRINTQ_FULL = 61
Const ERROR_PRIVATE_DIALOG_INDEX = 1415
Const ERROR_PRIVILEGE_NOT_HELD = 1314
Const ERROR_PROC_NOT_FOUND = 127
Const ERROR_PROCESS_ABORTED = 1067
Const ERROR_PUBLIC_ONLY_HOOK = 1429
Const ERROR_READ_FAULT = 30
Const ERROR_REC_NON_EXISTENT = 4005
Const ERROR_REDIR_PAUSED = 72
Const ERROR_REDIRECTOR_HAS_OPEN_HANDLES = 1794
Const ERROR_REGISTRY_CORRUPT = 1015
Const ERROR_REGISTRY_IO_FAILED = 1016
Const ERROR_REGISTRY_RECOVERED = 1014
Const ERROR_RELOC_CHAIN_XEEDS_SEGLIM = 201
Const ERROR_REM_NOT_LIST = 51
Const ERROR_REMOTE_SESSION_LIMIT_EXCEEDED = 1220
Const ERROR_REQ_NOT_ACCEP = 71
Const ERROR_RESOURCE_DATA_NOT_FOUND = 1812
Const ERROR_RESOURCE_LANG_NOT_FOUND = 1815
Const ERROR_RESOURCE_NAME_NOT_FOUND = 1814
Const ERROR_RESOURCE_TYPE_NOT_FOUND = 1813
Const ERROR_REVISION_MISMATCH = 1306
Const ERROR_RING2_STACK_IN_USE = 207
Const ERROR_RING2SEG_MUST_BE_MOVABLE = 200
Const ERROR_RPL_NOT_ALLOWED = 4006
Const ERROR_RXACT_COMMIT_FAILURE = 1370
Const ERROR_RXACT_INVALID_STATE = 1369
Const ERROR_SAME_DRIVE = 143
Const ERROR_SCREEN_ALREADY_LOCKED = 1440
Const ERROR_SECRET_TOO_LONG = 1382
Const ERROR_SECTOR_NOT_FOUND = 27
Const ERROR_SEEK = 25
Const ERROR_SEEK_ON_DEVICE = 132
Const ERROR_SEM_IS_SET = 102
Const ERROR_SEM_NOT_FOUND = 187
Const ERROR_SEM_OWNER_DIED = 105
Const ERROR_SEM_TIMEOUT = 121
Const ERROR_SEM_USER_LIMIT = 106
Const ERROR_SERIAL_NO_DEVICE = 1118
Const ERROR_SERVER_DISABLED = 1341
Const ERROR_SERVER_HAS_OPEN_HANDLES = 1811
Const ERROR_SERVER_NOT_DISABLED = 1342
Const ERROR_SERVICE_ALREADY_RUNNING = 1056
Const ERROR_SERVICE_CANNOT_ACCEPT_CTRL = 1061
Const ERROR_SERVICE_DATABASE_LOCKED = 1055
Const ERROR_SERVICE_DEPENDENCY_DELETED = 1075
Const ERROR_SERVICE_DEPENDENCY_FAIL = 1068
Const ERROR_SERVICE_DISABLED = 1058
Const ERROR_SERVICE_DOES_NOT_EXIST = 1060
Const ERROR_SERVICE_EXISTS = 1073
Const ERROR_SERVICE_LOGON_FAILED = 1069
Const ERROR_SERVICE_MARKED_FOR_DELETE = 1072
Const ERROR_SERVICE_NEVER_STARTED = 1077
Const ERROR_SERVICE_NO_THREAD = 1054
Const ERROR_SERVICE_NOT_ACTIVE = 1062
Const ERROR_SERVICE_REQUEST_TIMEOUT = 1053
Const ERROR_SERVICE_SPECIFIC_ERROR = 1066
Const ERROR_SERVICE_START_HANG = 1070
Const ERROR_SESSION_CREDENTIAL_CONFLICT = 1219
Const ERROR_SETCOUNT_ON_BAD_LB = 1433
Const ERROR_SETMARK_DETECTED = 1103
Const ERROR_SEVERITY_ERROR = 3221225472
Const ERROR_SEVERITY_INFORMATIONAL = 1073741824
Const ERROR_SEVERITY_SUCCESS = 0
Const ERROR_SEVERITY_WARNING = 2147483648
Const ERROR_SHARING_BUFFER_EXCEEDED = 36
Const ERROR_SHARING_PAUSED = 70
Const ERROR_SHARING_VIOLATION = 32
Const ERROR_SHUTDOWN_IN_PROGRESS = 1115
Const ERROR_SIGNAL_PENDING = 162
Const ERROR_SIGNAL_REFUSED = 156
Const ERROR_SOME_NOT_MAPPED = 1301
Const ERROR_SPECIAL_ACCOUNT = 1371
Const ERROR_SPECIAL_GROUP = 1372
Const ERROR_SPECIAL_USER = 1373
Const ERROR_SPL_NO_ADDJOB = 3004
Const ERROR_SPL_NO_STARTDOC = 3003
Const ERROR_SPOOL_FILE_NOT_FOUND = 3002
Const ERROR_STACK_OVERFLOW = 1001
Const ERROR_STATIC_INIT = 4002
Const ERROR_SUBST_TO_JOIN = 141
Const ERROR_SUBST_TO_SUBST = 139
Const ERROR_SUCCESS = 0
Const ERROR_SWAPERROR = 999
Const ERROR_SYSTEM_TRACE = 150
Const ERROR_THREAD_1_INACTIVE = 210
Const ERROR_TLW_WITH_WSCHILD = 1406
Const ERROR_TOKEN_ALREADY_IN_USE = 1375
Const ERROR_TOO_MANY_CMDS = 56
Const ERROR_TOO_MANY_CONTEXT_IDS = 1384
Const ERROR_TOO_MANY_LUIDS_REQUESTED = 1333
Const ERROR_TOO_MANY_MODULES = 214
Const ERROR_TOO_MANY_MUXWAITERS = 152
Const ERROR_TOO_MANY_NAMES = 68
Const ERROR_TOO_MANY_OPEN_FILES = 4
Const ERROR_TOO_MANY_POSTS = 298
Const ERROR_TOO_MANY_SECRETS = 1381
Const ERROR_TOO_MANY_SEM_REQUESTS = 103
Const ERROR_TOO_MANY_SEMAPHORES = 100
Const ERROR_TOO_MANY_SESS = 69
Const ERROR_TOO_MANY_SIDS = 1389
Const ERROR_TOO_MANY_TCBS = 155
Const ERROR_TRANSFORM_NOT_SUPPORTED = 2004
Const ERROR_TRUST_FAILURE = 1790
Const ERROR_TRUSTED_DOMAIN_FAILURE = 1788
Const ERROR_TRUSTED_RELATIONSHIP_FAILURE = 1789
Const ERROR_UNABLE_TO_LOCK_MEDIA = 1108
Const ERROR_UNABLE_TO_UNLOAD_MEDIA = 1109
Const ERROR_UNEXP_NET_ERR = 59
Const ERROR_UNKNOWN_PORT = 1796
Const ERROR_UNKNOWN_PRINT_MONITOR = 3000
Const ERROR_UNKNOWN_PRINTER_DRIVER = 1797
Const ERROR_UNKNOWN_PRINTPROCESSOR = 1798
Const ERROR_UNKNOWN_REVISION = 1305
Const ERROR_UNRECOGNIZED_MEDIA = 1785
Const ERROR_UNRECOGNIZED_VOLUME = 1005
Const ERROR_USER_EXISTS = 1316
Const ERROR_VC_DISCONNECTED = 240
Const ERROR_WAIT_NO_CHILDREN = 128
Const ERROR_WINDOW_NOT_COMBOBOX = 1423
Const ERROR_WINDOW_NOT_DIALOG = 1420
Const ERROR_WINDOW_OF_OTHER_THREAD = 1408
Const ERROR_WINS_INTERNAL = 4000
Const ERROR_WRITE_FAULT = 29
Const ERROR_WRITE_PROTECT = 19
Const ERROR_WRONG_DISK = 34
Const ERROR_WRONG_PASSWORD = 1323
Const ERRORAPI = 0
Const ES_AUTOHSCROLL = 128
Const ES_AUTOVSCROLL = 64
Const ES_CENTER = 1
Const ES_LEFT = 0
Const ES_LOWERCASE = 16
Const ES_MULTILINE = 4
Const ES_NOHIDESEL = 256
Const ES_OEMCONVERT = 1024
Const ES_PASSWORD = 32
Const ES_READONLY = 2048
Const ES_RIGHT = 2
Const ES_UPPERCASE = 8
Const ES_WANTRETURN = 4096
Const ESB_DISABLE_BOTH = 3
Const ESB_DISABLE_DOWN = 2
Const ESB_DISABLE_LEFT = 1
Const ESB_DISABLE_LTUP = ESB_DISABLE_LEFT
Const ESB_DISABLE_RIGHT = 2
Const ESB_DISABLE_RTDN = ESB_DISABLE_RIGHT
Const ESB_DISABLE_UP = 1
Const ESB_ENABLE_BOTH = 0
Const ETO_CLIPPED = 4
Const ETO_GRAYED = 1
Const ETO_OPAQUE = 2
Const EV_BREAK = 64
Const EV_CTS = 8
Const EV_DSR = 16
Const EV_ERR = 128
Const EV_EVENT1 = 2048
Const EV_EVENT2 = 4096
Const EV_PERR = 512
Const EV_RING = 256
Const EV_RLSD = 32
Const EV_RX80FULL = 1024
Const EV_RXCHAR = 1
Const EV_RXFLAG = 2
Const EV_TXEMPTY = 4
Const EVENPARITY = 2
Const EWX_FORCE = 4
Const EWX_LOGOFF = 0
Const EWX_REBOOT = 2
Const EWX_SHUTDOWN = 1
Const EXCEPTION_CONTINUE_EXECUTION = -1
Const EXCEPTION_CONTINUE_SEARCH = 0
Const EXCEPTION_DEBUG_EVENT = 1
Const EXCEPTION_EXECUTE_HANDLER = 1
Const EXCEPTION_MAXIMUM_PARAMETERS = 15
Const EXIT_PROCESS_DEBUG_EVENT = 5
Const EXIT_THREAD_DEBUG_EVENT = 4
Const EXT_DEVICE_CAPS = 4099
Const ExtTextOutC = 512
Const FACILITY_NT_BIT = 268435456
Const FAILED_ACCESS_ACE_FLAG = 128
Const FALT = 16
Const FCONTROL = 8
Const FF_DECORATIVE = 80
Const FF_DONTCARE = 0
Const FF_MODERN = 48
Const FF_ROMAN = 16
Const FF_SCRIPT = 64
Const FF_SWISS = 32
Const FILE_ADD_FILE = 2
Const FILE_ADD_SUBDIRECTORY = 4
Const FILE_ALL_ACCESS = 2032127
Const FILE_APPEND_DATA = 4
Const FILE_ATTRIBUTE_ARCHIVE = 32
Const FILE_ATTRIBUTE_COMPRESSED = 2048
Const FILE_ATTRIBUTE_DIRECTORY = 16
Const FILE_ATTRIBUTE_HIDDEN = 2
Const FILE_ATTRIBUTE_NORMAL = 128
Const FILE_ATTRIBUTE_READONLY = 1
Const FILE_ATTRIBUTE_SYSTEM = 4
Const FILE_ATTRIBUTE_TEMPORARY = 256
Const FILE_BEGIN = 0
Const FILE_CASE_PRESERVED_NAMES = 2
Const FILE_CASE_SENSITIVE_SEARCH = 1
Const FILE_CREATE_PIPE_INSTANCE = 4
Const FILE_CURRENT = 1
Const FILE_DELETE_CHILD = 64
Const FILE_END = 2
Const FILE_EXECUTE = 32
Const FILE_FILE_COMPRESSION = 16
Const FILE_FLAG_BACKUP_SEMANTICS = 33554432
Const FILE_FLAG_DELETE_ON_CLOSE = 67108864
Const FILE_FLAG_NO_BUFFERING = 536870912
Const FILE_FLAG_OVERLAPPED = 1073741824
Const FILE_FLAG_POSIX_SEMANTICS = 16777216
Const FILE_FLAG_RANDOM_ACCESS = 268435456
Const FILE_FLAG_SEQUENTIAL_SCAN = 134217728
Const FILE_FLAG_WRITE_THROUGH = 2147483648
Const FILE_LIST_DIRECTORY = 1
Const FILE_NOTIFY_CHANGE_ATTRIBUTES = 4
Const FILE_NOTIFY_CHANGE_DIR_NAME = 2
Const FILE_NOTIFY_CHANGE_FILE_NAME = 1
Const FILE_NOTIFY_CHANGE_LAST_WRITE = 16
Const FILE_NOTIFY_CHANGE_SECURITY = 256
Const FILE_NOTIFY_CHANGE_SIZE = 8
Const FILE_PERSISTENT_ACLS = 8
Const FILE_READ_ATTRIBUTES = 128
Const FILE_READ_DATA = 1
Const FILE_READ_EA = 8
Const FILE_READ_PROPERTIES = FILE_READ_EA
Const FILE_SHARE_READ = 1
Const FILE_SHARE_WRITE = 2
Const FILE_TRAVERSE = 32
Const FILE_TYPE_CHAR = 2
Const FILE_TYPE_DISK = 1
Const FILE_TYPE_PIPE = 3
Const FILE_TYPE_REMOTE = 32768
Const FILE_TYPE_UNKNOWN = 0
Const FILE_UNICODE_ON_DISK = 4
Const FILE_VOLUME_IS_COMPRESSED = 32768
Const FILE_WRITE_ATTRIBUTES = 256
Const FILE_WRITE_DATA = 2
Const FILE_WRITE_EA = 16
Const FILE_WRITE_PROPERTIES = FILE_WRITE_EA
Const FILEOPENORD = 1536
Const FINDDLGORD = 1540
Const FIXED_PITCH = 1
Const FLI_GLYPHS = 262144
Const FLI_MASK = 4155
Const FLOODFILLBORDER = 0
Const FLOODFILLSURFACE = 1
Const FLUSHOUTPUT = 6
Const FNERR_BUFFERTOOSMALL = 12291
Const FNERR_FILENAMECODES = 12288
Const FNERR_INVALIDFILENAME = 12290
Const FNERR_SUBCLASSFAILURE = 12289
Const FNOINVERT = 2
Const FO_COPY = 2
Const FO_DELETE = 3
Const FO_MOVE = 1
Const FO_RENAME = 4
Const FOCUS_EVENT = 16
Const FOF_ALLOWUNDO = 64
Const FOF_CONFIRMMOUSE = 2
Const FOF_FILESONLY = 128
Const FOF_MULTIDESTFILES = 1
Const FOF_NOCONFIRMATION = 16
Const FOF_NOCONFIRMMKDIR = 512
Const FOF_RENAMEONCOLLISION = 8
Const FOF_SILENT = 4
Const FOF_SIMPLEPROGRESS = 256
Const FOF_WANTMAPPINGHANDLE = 32
Const FONTDLGORD = 1542
Const FONTMAPPER_MAX = 10
Const FOREGROUND_BLUE = 1
Const FOREGROUND_GREEN = 2
Const FOREGROUND_INTENSITY = 8
Const FOREGROUND_RED = 4
Const FORM_BUILTIN = 1
Const FORMAT_MESSAGE_ALLOCATE_BUFFER = 256
Const FORMAT_MESSAGE_ARGUMENT_ARRAY = 8192
Const FORMAT_MESSAGE_FROM_HMODULE = 2048
Const FORMAT_MESSAGE_FROM_STRING = 1024
Const FORMAT_MESSAGE_FROM_SYSTEM = 4096
Const FORMAT_MESSAGE_IGNORE_INSERTS = 512
Const FORMAT_MESSAGE_MAX_WIDTH_MASK = 255
Const FORMATDLGORD30 = 1544
Const FORMATDLGORD31 = 1543
Const FR_DIALOGTERM = 64
Const FR_DOWN = 1
Const FR_ENABLEHOOK = 256
Const FR_ENABLETEMPLATE = 512
Const FR_ENABLETEMPLATEHANDLE = 8192
Const FR_FINDNEXT = 8
Const FR_HIDEMATCHCASE = 32768
Const FR_HIDEUPDOWN = 16384
Const FR_HIDEWHOLEWORD = 65536
Const FR_MATCHCASE = 4
Const FR_NOMATCHCASE = 2048
Const FR_NOUPDOWN = 1024
Const FR_NOWHOLEWORD = 4096
Const FR_REPLACE = 16
Const FR_REPLACEALL = 32
Const FR_SHOWHELP = 128
Const FR_WHOLEWORD = 2
Const FRERR_BUFFERLENGTHZERO = 16385
Const FRERR_FINDREPLACECODES = 16384
Const frm1 = 1076
Const frm2 = 1077
Const frm3 = 1078
Const frm4 = 1079
Const FROM_LEFT_1ST_BUTTON_PRESSED = 1
Const FROM_LEFT_2ND_BUTTON_PRESSED = 4
Const FROM_LEFT_3RD_BUTTON_PRESSED = 8
Const FROM_LEFT_4TH_BUTTON_PRESSED = 16
Const FS_ARABIC = 64
Const FS_BALTIC = 128
Const FS_CASE_IS_PRESERVED = FILE_CASE_PRESERVED_NAMES
Const FS_CASE_SENSITIVE = FILE_CASE_SENSITIVE_SEARCH
Const FS_CHINESESIMP = 262144
Const FS_CHINESETRAD = 1048576
Const FS_CYRILLIC = 4
Const FS_GREEK = 8
Const FS_HEBREW = 32
Const FS_JISJAPAN = 131072
Const FS_JOHAB = 2097152
Const FS_LATIN1 = 1
Const FS_LATIN2 = 2
Const FS_PERSISTENT_ACLS = FILE_PERSISTENT_ACLS
Const FS_SYMBOL = 2147483648
Const FS_THAI = 65536
Const FS_TURKISH = 16
Const FS_UNICODE_STORED_ON_DISK = FILE_UNICODE_ON_DISK
Const FS_WANSUNG = 524288
Const FSHIFT = 4
Const FW_BOLD = 700
Const FW_DONTCARE = 0
Const FW_EXTRABOLD = 800
Const FW_EXTRALIGHT = 200
Const FW_HEAVY = 900
Const FW_LIGHT = 300
Const FW_MEDIUM = 500
Const FW_NORMAL = 400
Const FW_REGULAR = FW_NORMAL
Const FW_SEMIBOLD = 600
Const FW_THIN = 100
Const FW_ULTRABOLD = FW_EXTRABOLD
Const FW_ULTRALIGHT = FW_EXTRALIGHT
Const GCL_CBCLSEXTRA = -20
Const GCL_CBWNDEXTRA = -18
Const GCL_CONVERSION = 1
Const GCL_HBRBACKGROUND = -10
Const GCL_HCURSOR = -12
Const GCL_HICON = -14
Const GCL_HMODULE = -16
Const GCL_MENUNAME = -8
Const GCL_REVERSE_LENGTH = 3
Const GCL_REVERSECONVERSION = 2
Const GCL_STYLE = -26
Const GCL_WNDPROC = -24
Const GCP_CLASSIN = 524288
Const GCP_DBCS = 1
Const GCP_DIACRITIC = 256
Const GCP_DISPLAYZWG = 4194304
Const GCP_ERROR = 32768
Const GCP_GLYPHSHAPE = 16
Const GCP_JUSTIFY = 65536
Const GCP_JUSTIFYIN = 2097152
Const GCP_KASHIDA = 1024
Const GCP_LIGATE = 32
Const GCP_MAXEXTENT = 1048576
Const GCP_NEUTRALOVERRIDE = 33554432
Const GCP_NODIACRITICS = 131072
Const GCP_NUMERICOVERRIDE = 16777216
Const GCP_NUMERICSLATIN = 67108864
Const GCP_NUMERICSLOCAL = 134217728
Const GCP_REORDER = 2
Const GCP_SYMSWAPOFF = 8388608
Const GCP_USEKERNING = 8
Const GCPCLASS_ARABIC = 2
Const GCPCLASS_HEBREW = 2
Const GCPCLASS_LATIN = 1
Const GCPCLASS_LATINNUMBER = 5
Const GCPCLASS_LATINNUMERICSEPARATOR = 7
Const GCPCLASS_LATINNUMERICTERMINATOR = 6
Const GCPCLASS_LOCALNUMBER = 4
Const GCPCLASS_NEUTRAL = 3
Const GCPCLASS_NUMERICSEPARATOR = 8
Const GCPCLASS_PREBOUNDLTR = 64
Const GCPCLASS_PREBOUNDRTL = 128
Const GCS_COMPATTR = 16
Const GCS_COMPCLAUSE = 32
Const GCS_COMPREADATTR = 2
Const GCS_COMPREADCLAUSE = 4
Const GCS_COMPREADSTR = 1
Const GCS_COMPSTR = 8
Const GCS_CURSORPOS = 128
Const GCS_DELTASTART = 256
Const GCS_RESULTCLAUSE = 4096
Const GCS_RESULTREADCLAUSE = 1024
Const GCS_RESULTREADSTR = 512
Const GCS_RESULTSTR = 2048
Const GCW_ATOM = -32
Const GDI_ERROR = 65535
Const GENERIC_ALL = 268435456
Const GENERIC_EXECUTE = 536870912
Const GENERIC_READ = 2147483648
Const GENERIC_WRITE = 1073741824
Const GET_TAPE_DRIVE_INFORMATION = 1
Const GET_TAPE_MEDIA_INFORMATION = 0
Const GETCOLORTABLE = 5
Const GETDEVICEUNITS = 42
Const GETEXTENDEDTEXTMETRICS = 256
Const GETEXTENTTABLE = 257
Const GETFACENAME = 513
Const GETPAIRKERNTABLE = 258
Const GETPENWIDTH = 16
Const GETPHYSPAGESIZE = 12
Const GETPRINTINGOFFSET = 13
Const GETSCALINGFACTOR = 14
Const GETSETPAPERBINS = 29
Const GETSETPAPERMETRICS = 35
Const GETSETPRINTORIENT = 30
Const GETSETSCREENPARAMS = 3072
Const GETTECHNOLGY = 20
Const GETTECHNOLOGY = 20
Const GETTRACKKERNTABLE = 259
Const GETVECTORBRUSHSIZE = 27
Const GETVECTORPENSIZE = 26
Const GGL_INDEX = 2
Const GGL_LEVEL = 1
Const GGL_PRIVATE = 4
Const GGL_STRING = 3
Const GGO_BITMAP = 1
Const GGO_GLYPH_INDEX = 128
Const GGO_GRAY2_BITMAP = 4
Const GGO_GRAY4_BITMAP = 5
Const GGO_GRAY8_BITMAP = 6
Const GGO_METRICS = 0
Const GGO_NATIVE = 2
Const GHND = 66
Const GL_ID_CANNOTSAVE = 17
Const GL_ID_CHOOSECANDIDATE = 40
Const GL_ID_INPUTCODE = 38
Const GL_ID_INPUTRADICAL = 37
Const GL_ID_INPUTREADING = 36
Const GL_ID_INPUTSYMBOL = 39
Const GL_ID_NOCONVERT = 32
Const GL_ID_NODICTIONARY = 16
Const GL_ID_NOMODULE = 1
Const GL_ID_PRIVATE_FIRST = 32768
Const GL_ID_PRIVATE_LAST = 65535
Const GL_ID_READINGCONFLICT = 35
Const GL_ID_REVERSECONVERSION = 41
Const GL_ID_TOOMANYSTROKE = 34
Const GL_ID_TYPINGERROR = 33
Const GL_ID_UNKNOWN = 0
Const GL_LEVEL_ERROR = 2
Const GL_LEVEL_FATAL = 1
Const GL_LEVEL_INFORMATION = 4
Const GL_LEVEL_NOGUIDELINE = 0
Const GL_LEVEL_WARNING = 3
Const GM_ADVANCED = 2
Const GM_COMPATIBLE = 1
Const GM_LAST = 2
Const GMEM_DDESHARE = 8192
Const GMEM_DISCARDABLE = 256
Const GMEM_DISCARDED = 16384
Const GMEM_FIXED = 0
Const GMEM_INVALID_HANDLE = 32768
Const GMEM_LOCKCOUNT = 255
Const GMEM_MODIFY = 128
Const GMEM_MOVEABLE = 2
Const GMEM_NOCOMPACT = 16
Const GMEM_NODISCARD = 32
Const GMEM_NOT_BANKED = 4096
Const GMEM_LOWER = GMEM_NOT_BANKED
Const GMEM_NOTIFY = 16384
Const GMEM_SHARE = 8192
Const GMEM_VALID_FLAGS = 32626
Const GMEM_ZEROINIT = 64
Const GPTR = 64
Const GRAY_BRUSH = 2
Const GREEK_CHARSET = 161
Const GROUP_NAME = 128
Const grp1 = 1072
Const grp2 = 1073
Const grp3 = 1074
Const grp4 = 1075
Const GW_CHILD = 5
Const GW_HWNDFIRST = 0
Const GW_HWNDLAST = 1
Const GW_HWNDNEXT = 2
Const GW_HWNDPREV = 3
Const GW_MAX = 5
Const GW_OWNER = 4
Const GWL_EXSTYLE = -20
Const GWL_HINSTANCE = -6
Const GWL_HWNDPARENT = -8
Const GWL_ID = -12
Const GWL_STYLE = -16
Const GWL_USERDATA = -21
Const GWL_WNDPROC = -4
Const HALFTONE = 4
Const HANGEUL_CHARSET = 129
Const HANGUP_COMPLETE = 5
Const HANGUP_PENDING = 4
Const HC_ACTION = 0
Const HC_GETNEXT = 1
Const HC_NOREMOVE = 3
Const HC_NOREM = HC_NOREMOVE
Const HC_SKIP = 2
Const HC_SYSMODALOFF = 5
Const HC_SYSMODALON = 4
Const HCBT_ACTIVATE = 5
Const HCBT_CLICKSKIPPED = 6
Const HCBT_CREATEWND = 3
Const HCBT_DESTROYWND = 4
Const HCBT_KEYSKIPPED = 7
Const HCBT_MINMAX = 1
Const HCBT_MOVESIZE = 0
Const HCBT_QS = 2
Const HCBT_SETFOCUS = 9
Const HCBT_SYSCOMMAND = 8
Const HDATA_APPOWNED = 1
Const HEBREW_CHARSET = 177
Const HELP_COMMAND = 258
Const HELP_CONTENTS = 3
Const HELP_CONTEXT = 1
Const HELP_CONTEXTPOPUP = 8
Const HELP_FORCEFILE = 9
Const HELP_HELPONHELP = 4
Const HELP_INDEX = 3
Const HELP_KEY = 257
Const HELP_MULTIKEY = 513
Const HELP_PARTIALKEY = 261
Const HELP_QUIT = 2
Const HELP_SETCONTENTS = 5
Const HELP_SETINDEX = 5
Const HELP_SETWINPOS = 515
Const HGDI_ERROR = 65535
Const HIDE_WINDOW = 0
Const HIGH_PRIORITY_CLASS = 128
Const HKEY_CLASSES_ROOT = 2147483648
Const HKEY_CURRENT_CONFIG = 2147483653
Const HKEY_CURRENT_USER = 2147483649
Const HKEY_DYN_DATA = 2147483654
Const HKEY_LOCAL_MACHINE = 2147483650
Const HKEY_PERFORMANCE_DATA = 2147483652
Const HKEY_USERS = 2147483651
Const HKL_NEXT = 1
Const HKL_PREV = 0
Const HORZRES = 8
Const HORZSIZE = 4
Const HS_API_MAX = 25
Const HSHELL_ACTIVATESHELLWINDOW = 3
Const HSHELL_WINDOWCREATED = 1
Const HSHELL_WINDOWDESTROYED = 2
Const HTBORDER = 18
Const HTBOTTOM = 15
Const HTBOTTOMLEFT = 16
Const HTBOTTOMRIGHT = 17
Const HTCAPTION = 2
Const HTCLIENT = 1
Const HTERROR = -2
Const HTGROWBOX = 4
Const HTHSCROLL = 6
Const HTLEFT = 10
Const HTMAXBUTTON = 9
Const HTMENU = 5
Const HTMINBUTTON = 8
Const HTNOWHERE = 0
Const HTREDUCE = HTMINBUTTON
Const HTRIGHT = 11
Const HTSIZE = HTGROWBOX
Const HTSIZEFIRST = HTLEFT
Const HTSIZELAST = HTBOTTOMRIGHT
Const HTSYSMENU = 3
Const HTTOP = 12
Const HTTOPLEFT = 13
Const HTTOPRIGHT = 14
Const HTTRANSPARENT = -1
Const HTVSCROLL = 7
Const HTZOOM = HTMAXBUTTON
Const HWND_BOTTOM = 1
Const HWND_BROADCAST = 65535
Const HWND_DESKTOP = 0
Const HWND_NOTOPMOST = -2
Const HWND_TOP = 0
Const HWND_TOPMOST = -1
Const ICM_OFF = 1
Const ICM_ON = 2
Const ICM_QUERY = 3
Const ico1 = 1084
Const ico2 = 1085
Const ico3 = 1086
Const ico4 = 1087
Const IDABORT = 3
Const IDC_APPSTARTING = 32650
Const IDC_ARROW = 32512
Const IDC_CROSS = 32515
Const IDC_IBEAM = 32513
Const IDC_ICON = 32641
Const IDC_NO = 32648
Const IDC_SIZE = 32640
Const IDC_SIZEALL = 32646
Const IDC_SIZENESW = 32643
Const IDC_SIZENS = 32645
Const IDC_SIZENWSE = 32642
Const IDC_SIZEWE = 32644
Const IDC_UPARROW = 32516
Const IDC_WAIT = 32514
Const IDCANCEL = 2
Const IDHOT_SNAPDESKTOP = -2
Const IDHOT_SNAPWINDOW = -1
Const IDI_APPLICATION = 32512
Const IDI_ASTERISK = 32516
Const IDI_EXCLAMATION = 32515
Const IDI_HAND = 32513
Const IDI_QUESTION = 32514
Const IDIGNORE = 5
Const IDLE_PRIORITY_CLASS = 64
Const IDNO = 7
Const IDOK = 1
Const IDRETRY = 4
Const IDYES = 6
Const IE_BADID = -1
Const IE_BAUDRATE = -12
Const IE_BYTESIZE = -11
Const IE_DEFAULT = -5
Const IE_HARDWARE = -10
Const IE_MEMORY = -4
Const IE_NOPEN = -3
Const IE_OPEN = -2
Const IGNORE = 0
Const IGP_CONVERSION = 8
Const IGP_PROPERTY = 4
Const IGP_SELECT = 24
Const IGP_SENTENCE = 12
Const IGP_SETCOMPSTR = 20
Const IGP_UI = 16
Const ILLUMINANT_A = 1
Const ILLUMINANT_B = 2
Const ILLUMINANT_C = 3
Const ILLUMINANT_D50 = 4
Const ILLUMINANT_D55 = 5
Const ILLUMINANT_D65 = 6
Const ILLUMINANT_D75 = 7
Const ILLUMINANT_DAYLIGHT = ILLUMINANT_C
Const ILLUMINANT_DEVICE_DEFAULT = 0
Const ILLUMINANT_F2 = 8
Const ILLUMINANT_FLUORESCENT = ILLUMINANT_F2
Const ILLUMINANT_MAX_INDEX = ILLUMINANT_F2
Const ILLUMINANT_NTSC = ILLUMINANT_C
Const ILLUMINANT_TUNGSTEN = ILLUMINANT_A
Const IMC_CLOSESTATUSWINDOW = 33
Const IMC_GETCANDIDATEPOS = 7
Const IMC_GETCOMPOSITIONFONT = 9
Const IMC_GETCOMPOSITIONWINDOW = 11
Const IMC_GETSTATUSWINDOWPOS = 15
Const IMC_OPENSTATUSWINDOW = 34
Const IMC_SETCANDIDATEPOS = 8
Const IMC_SETCOMPOSITIONFONT = 10
Const IMC_SETCOMPOSITIONWINDOW = 12
Const IMC_SETSTATUSWINDOWPOS = 16
Const IME_CAND_CODE = 2
Const IME_CAND_MEANING = 3
Const IME_CAND_RADICAL = 4
Const IME_CAND_READ = 1
Const IME_CAND_STROKE = 5
Const IME_CAND_UNKNOWN = 0
Const IME_CHOTKEY_IME_NONIME_TOGGLE = 16
Const IME_CHOTKEY_SHAPE_TOGGLE = 17
Const IME_CHOTKEY_SYMBOL_TOGGLE = 18
Const IME_CMODE_ALPHANUMERIC = 0
Const IME_CMODE_CHARCODE = 32
Const IME_CMODE_EUDC = 512
Const IME_CMODE_FULLSHAPE = 8
Const IME_CMODE_HANJACONVERT = 64
Const IME_CMODE_KATAKANA = 2
Const IME_CMODE_LANGUAGE = 3
Const IME_CMODE_NATIVE = 1
Const IME_CMODE_CHINESE = IME_CMODE_NATIVE
Const IME_CMODE_HANGEUL = IME_CMODE_NATIVE
Const IME_CMODE_JAPANESE = IME_CMODE_NATIVE
Const IME_CMODE_NOCONVERSION = 256
Const IME_CMODE_ROMAN = 16
Const IME_CMODE_SOFTKBD = 128
Const IME_CMODE_SYMBOL = 1024
Const IME_CONFIG_GENERAL = 1
Const IME_CONFIG_REGISTERWORD = 2
Const IME_CONFIG_SELECTDICTIONARY = 3
Const IME_ESC_GET_EUDC_DICTIONARY = 4099
Const IME_ESC_HANJA_MODE = 4104
Const IME_ESC_IME_NAME = 4102
Const IME_ESC_MAX_KEY = 4101
Const IME_ESC_PRIVATE_FIRST = 2048
Const IME_ESC_PRIVATE_LAST = 4095
Const IME_ESC_QUERY_SUPPORT = 3
Const IME_ESC_RESERVED_FIRST = 4
Const IME_ESC_RESERVED_LAST = 2047
Const IME_ESC_SEQUENCE_TO_INTERNAL = 4097
Const IME_ESC_SET_EUDC_DICTIONARY = 4100
Const IME_ESC_SYNC_HOTKEY = 4103
Const IME_HOTKEY_DSWITCH_FIRST = 256
Const IME_HOTKEY_DSWITCH_LAST = 287
Const IME_ITHOTKEY_PREVIOUS_COMPOSITION = 513
Const IME_ITHOTKEY_RESEND_RESULTSTR = 512
Const IME_ITHOTKEY_UISTYLE_TOGGLE = 514
Const IME_JHOTKEY_CLOSE_OPEN = 48
Const IME_KHOTKEY_ENGLISH = 82
Const IME_KHOTKEY_HANJACONVERT = 81
Const IME_KHOTKEY_SHAPE_TOGGLE = 80
Const IME_PROP_AT_CARET = 65536
Const IME_PROP_CANDLIST_START_FROM_1 = 262144
Const IME_PROP_SPECIAL_UI = 131072
Const IME_PROP_UNICODE = 524288
Const IME_REGWORD_STYLE_EUDC = 1
Const IME_REGWORD_STYLE_USER_FIRST = 2147483648
Const IME_REGWORD_STYLE_USER_LAST = 65535
Const IME_SMODE_AUTOMATIC = 4
Const IME_SMODE_NONE = 0
Const IME_SMODE_PHRASEPREDICT = 8
Const IME_SMODE_PLAURALCLAUSE = 1
Const IME_SMODE_SINGLECONVERT = 2
Const IME_THOTKEY_IME_NONIME_TOGGLE = 112
Const IME_THOTKEY_SHAPE_TOGGLE = 113
Const IME_THOTKEY_SYMBOL_TOGGLE = 114
Const IMM_ERROR_GENERAL = -2
Const IMM_ERROR_NODATA = -1
Const IMN_CHANGECANDIDATE = 3
Const IMN_CLOSECANDIDATE = 4
Const IMN_CLOSESTATUSWINDOW = 1
Const IMN_GUIDELINE = 13
Const IMN_OPENCANDIDATE = 5
Const IMN_OPENSTATUSWINDOW = 2
Const IMN_PRIVATE = 14
Const IMN_SETCANDIDATEPOS = 9
Const IMN_SETCOMPOSITIONFONT = 10
Const IMN_SETCOMPOSITIONWINDOW = 11
Const IMN_SETCONVERSIONMODE = 6
Const IMN_SETOPENSTATUS = 8
Const IMN_SETSENTENCEMODE = 7
Const IMN_SETSTATUSWINDOWPOS = 12
Const INFINITE = 65535
Const INHERIT_ONLY_ACE = 8
Const INPLACE_E_FIRST = 2147746208
Const INPLACE_E_LAST = 2147746223
Const INPLACE_E_NOTOOLSPACE = 2147746209
Const INPLACE_E_NOTUNDOABLE = 2147746208
Const INPLACE_S_FIRST = 262560
Const INPLACE_S_LAST = 262575
Const INPLACE_S_TRUNCATED = 262560
Const IO_COMPLETION_ALL_ACCESS = 2031619
Const IO_COMPLETION_MODIFY_STATE = 2
Const ISC_SHOWUIALL = 3221225487
Const ISC_SHOWUIALLCANDIDATEWINDOW = 15
Const ISC_SHOWUICANDIDATEWINDOW = 1
Const ISC_SHOWUICOMPOSITIONWINDOW = 2147483648
Const ISC_SHOWUIGUIDELINE = 1073741824
Const ITALIC_FONTTYPE = 512
Const JOB_ACCESS_ADMINISTER = 16
Const JOB_CONTROL_CANCEL = 3
Const JOB_CONTROL_DELETE = 5
Const JOB_CONTROL_PAUSE = 1
Const JOB_CONTROL_RESTART = 4
Const JOB_CONTROL_RESUME = 2
Const JOB_POSITION_UNSPECIFIED = 0
Const JOB_STATUS_DELETING = 4
Const JOB_STATUS_ERROR = 2
Const JOB_STATUS_OFFLINE = 32
Const JOB_STATUS_PAPEROUT = 64
Const JOB_STATUS_PAUSED = 1
Const JOB_STATUS_PRINTED = 128
Const JOB_STATUS_PRINTING = 16
Const JOB_STATUS_SPOOLING = 8
Const JOB_STATUS_USER_INTERVENTION = 65536
Const JOHAB_CHARSET = 130
Const JOY_BUTTON1 = 1
Const JOY_BUTTON10 = 512
Const JOY_BUTTON11 = 1024
Const JOY_BUTTON12 = 2048
Const JOY_BUTTON13 = 4096
Const JOY_BUTTON14 = 8192
Const JOY_BUTTON15 = 16384
Const JOY_BUTTON16 = 32768
Const JOY_BUTTON17 = 65536
Const JOY_BUTTON18 = 131072
Const JOY_BUTTON19 = 262144
Const JOY_BUTTON1CHG = 256
Const JOY_BUTTON2 = 2
Const JOY_BUTTON20 = 524288
Const JOY_BUTTON21 = 1048576
Const JOY_BUTTON22 = 2097152
Const JOY_BUTTON23 = 4194304
Const JOY_BUTTON24 = 8388608
Const JOY_BUTTON25 = 16777216
Const JOY_BUTTON26 = 33554432
Const JOY_BUTTON27 = 67108864
Const JOY_BUTTON28 = 134217728
Const JOY_BUTTON29 = 268435456
Const JOY_BUTTON2CHG = 512
Const JOY_BUTTON3 = 4
Const JOY_BUTTON30 = 536870912
Const JOY_BUTTON31 = 1073741824
Const JOY_BUTTON32 = 2147483648
Const JOY_BUTTON3CHG = 1024
Const JOY_BUTTON4 = 8
Const JOY_BUTTON4CHG = 2048
Const JOY_BUTTON5 = 16
Const JOY_BUTTON6 = 32
Const JOY_BUTTON7 = 64
Const JOY_BUTTON8 = 128
Const JOY_BUTTON9 = 256
Const JOY_CAL_READ3 = 262144
Const JOY_CAL_READ4 = 524288
Const JOY_CAL_READ5 = 4194304
Const JOY_CAL_READ6 = 8388608
Const JOY_CAL_READALWAYS = 65536
Const JOY_CAL_READRONLY = 33554432
Const JOY_CAL_READUONLY = 67108864
Const JOY_CAL_READVONLY = 134217728
Const JOY_CAL_READXONLY = 1048576
Const JOY_CAL_READXYONLY = 131072
Const JOY_CAL_READYONLY = 2097152
Const JOY_CAL_READZONLY = 16777216
Const JOY_POVBACKWARD = 18000
Const JOY_POVCENTERED = -1
Const JOY_POVFORWARD = 0
Const JOY_POVLEFT = 27000
Const JOY_POVRIGHT = 9000
Const JOY_RETURNBUTTONS = 128
Const JOY_RETURNCENTERED = 1024
Const JOY_RETURNPOV = 64
Const JOY_RETURNPOVCTS = 512
Const JOY_RETURNR = 8
Const JOY_RETURNRAWDATA = 256
Const JOY_RETURNU = 16
Const JOY_RETURNV = 32
Const JOY_RETURNX = 1
Const JOY_RETURNY = 2
Const JOY_RETURNZ = 4
Const JOY_USEDEADZONE = 2048
Const JOYERR_BASE = 160
Const JOYERR_NOCANDO = JOYERR_BASE + 6
Const JOYERR_NOERROR = 0
Const JOYERR_PARMS = JOYERR_BASE + 5
Const JOYERR_UNPLUGGED = JOYERR_BASE + 7
Const JOYSTICKID1 = 0
Const JOYSTICKID2 = 1
Const KEY_CREATE_LINK = 32
Const KEY_CREATE_SUB_KEY = 4
Const KEY_ENUMERATE_SUB_KEYS = 8
Const KEY_EVENT = 1
Const KEY_NOTIFY = 16
Const KEY_QUERY_VALUE = 1
Const KEY_SET_VALUE = 2
Const KEYEVENTF_EXTENDEDKEY = 1
Const KEYEVENTF_KEYUP = 2
Const KF_ALTDOWN = 8192
Const KF_DLGMODE = 2048
Const KF_EXTENDED = 256
Const KF_MENUMODE = 4096
Const KF_REPEAT = 16384
Const KF_UP = 32768
Const KL_NAMELENGTH = 9
Const KLF_ACTIVATE = 1
Const KLF_REORDER = 8
Const KLF_SUBSTITUTE_OK = 2
Const KLF_UNLOADPREVIOUS = 4
Const LANG_BULGARIAN = 2
Const LANG_CHINESE = 4
Const LANG_CROATIAN = 26
Const LANG_CZECH = 5
Const LANG_DANISH = 6
Const LANG_DUTCH = 19
Const LANG_ENGLISH = 9
Const LANG_FINNISH = 11
Const LANG_FRENCH = 12
Const LANG_GERMAN = 7
Const LANG_GREEK = 8
Const LANG_HUNGARIAN = 14
Const LANG_ICELANDIC = 15
Const LANG_ITALIAN = 16
Const LANG_JAPANESE = 17
Const LANG_KOREAN = 18
Const LANG_NEUTRAL = 0
Const LANG_NORWEGIAN = 20
Const LANG_POLISH = 21
Const LANG_PORTUGUESE = 22
Const LANG_ROMANIAN = 24
Const LANG_RUSSIAN = 25
Const LANG_SLOVAK = 27
Const LANG_SLOVENIAN = 36
Const LANG_SPANISH = 10
Const LANG_SWEDISH = 29
Const LANG_TURKISH = 31
Const LB_ADDFILE = 406
Const LB_ADDSTRING = 384
Const LB_CTLCODE = 0
Const LB_DELETESTRING = 386
Const LB_DIR = 397
Const LB_ERR = -1
Const LB_ERRSPACE = -2
Const LB_FINDSTRING = 399
Const LB_FINDSTRINGEXACT = 418
Const LB_GETANCHORINDEX = 413
Const LB_GETCARETINDEX = 415
Const LB_GETCOUNT = 395
Const LB_GETCURSEL = 392
Const LB_GETHORIZONTALEXTENT = 403
Const LB_GETITEMDATA = 409
Const LB_GETITEMHEIGHT = 417
Const LB_GETITEMRECT = 408
Const LB_GETLOCALE = 422
Const LB_GETSEL = 391
Const LB_GETSELCOUNT = 400
Const LB_GETSELITEMS = 401
Const LB_GETTEXT = 393
Const LB_GETTEXTLEN = 394
Const LB_GETTOPINDEX = 398
Const LB_INSERTSTRING = 385
Const LB_MSGMAX = 424
Const LB_OKAY = 0
Const LB_RESETCONTENT = 388
Const LB_SELECTSTRING = 396
Const LB_SELITEMRANGE = 411
Const LB_SELITEMRANGEEX = 387
Const LB_SETANCHORINDEX = 412
Const LB_SETCARETINDEX = 414
Const LB_SETCOLUMNWIDTH = 405
Const LB_SETCOUNT = 423
Const LB_SETCURSEL = 390
Const LB_SETHORIZONTALEXTENT = 404
Const LB_SETITEMDATA = 410
Const LB_SETITEMHEIGHT = 416
Const LB_SETLOCALE = 421
Const LB_SETSEL = 389
Const LB_SETTABSTOPS = 402
Const LB_SETTOPINDEX = 407
Const LBN_DBLCLK = 2
Const LBN_ERRSPACE = -2
Const LBN_KILLFOCUS = 5
Const LBN_SELCANCEL = 3
Const LBN_SELCHANGE = 1
Const LBN_SETFOCUS = 4
Const LBS_DISABLENOSCROLL = 4096
Const LBS_EXTENDEDSEL = 2048
Const LBS_HASSTRINGS = 64
Const LBS_MULTICOLUMN = 512
Const LBS_MULTIPLESEL = 8
Const LBS_NODATA = 8192
Const LBS_NOINTEGRALHEIGHT = 256
Const LBS_NOREDRAW = 4
Const LBS_NOTIFY = 1
Const LBS_OWNERDRAWFIXED = 16
Const LBS_OWNERDRAWVARIABLE = 32
Const LBS_SORT = 2
Const LBS_USETABSTOPS = 128
Const LBS_WANTKEYBOARDINPUT = 1024
Const LC_INTERIORS = 128
Const LC_MARKER = 4
Const LC_NONE = 0
Const LC_POLYLINE = 2
Const LC_POLYMARKER = 8
Const LC_STYLED = 32
Const LC_WIDE = 16
Const LC_WIDESTYLED = 64
Const LCMAP_BYTEREV = 2048
Const LCMAP_LOWERCASE = 256
Const LCMAP_SORTKEY = 1024
Const LCMAP_UPPERCASE = 512
Const LEFT_ALT_PRESSED = 2
Const LEFT_CTRL_PRESSED = 8
Const LF_FACESIZE = 32
Const LF_FULLFACESIZE = 64
Const LINECAPS = 30
Const LISTEN_OUTSTANDING = 1
Const LMEM_DISCARDABLE = 3840
Const LMEM_DISCARDED = 16384
Const LMEM_FIXED = 0
Const LMEM_INVALID_HANDLE = 32768
Const LMEM_LOCKCOUNT = 255
Const LMEM_MODIFY = 128
Const LMEM_MOVEABLE = 2
Const LMEM_NOCOMPACT = 16
Const LMEM_NODISCARD = 32
Const LMEM_VALID_FLAGS = 3954
Const LMEM_ZEROINIT = 64
Const LHND = LMEM_MOVEABLE + LMEM_ZEROINIT
Const LNOTIFY_DISCARD = 2
Const LNOTIFY_MOVE = 1
Const LNOTIFY_OUTOFMEM = 0
Const LOAD_DLL_DEBUG_EVENT = 6
Const LOCALE_ICENTURY = 36
Const LOCALE_ICOUNTRY = 5
Const LOCALE_ICURRDIGITS = 25
Const LOCALE_ICURRENCY = 27
Const LOCALE_IDATE = 33
Const LOCALE_IDAYLZERO = 38
Const LOCALE_IDEFAULTCODEPAGE = 11
Const LOCALE_IDEFAULTCOUNTRY = 10
Const LOCALE_IDEFAULTLANGUAGE = 9
Const LOCALE_IDIGITS = 17
Const LOCALE_IINTLCURRDIGITS = 26
Const LOCALE_ILANGUAGE = 1
Const LOCALE_ILDATE = 34
Const LOCALE_ILZERO = 18
Const LOCALE_IMEASURE = 13
Const LOCALE_IMONLZERO = 39
Const LOCALE_INEGCURR = 28
Const LOCALE_INEGSEPBYSPACE = 87
Const LOCALE_INEGSIGNPOSN = 83
Const LOCALE_INEGSYMPRECEDES = 86
Const LOCALE_IPOSSEPBYSPACE = 85
Const LOCALE_IPOSSIGNPOSN = 82
Const LOCALE_IPOSSYMPRECEDES = 84
Const LOCALE_ITIME = 35
Const LOCALE_ITLZERO = 37
Const LOCALE_NOUSEROVERRIDE = 2147483648
Const LOCALE_S1159 = 40
Const LOCALE_S2359 = 41
Const LOCALE_SABBREVCTRYNAME = 7
Const LOCALE_SABBREVDAYNAME1 = 49
Const LOCALE_SABBREVDAYNAME2 = 50
Const LOCALE_SABBREVDAYNAME3 = 51
Const LOCALE_SABBREVDAYNAME4 = 52
Const LOCALE_SABBREVDAYNAME5 = 53
Const LOCALE_SABBREVDAYNAME6 = 54
Const LOCALE_SABBREVDAYNAME7 = 55
Const LOCALE_SABBREVLANGNAME = 3
Const LOCALE_SABBREVMONTHNAME1 = 68
Const LOCALE_SABBREVMONTHNAME10 = 77
Const LOCALE_SABBREVMONTHNAME11 = 78
Const LOCALE_SABBREVMONTHNAME12 = 79
Const LOCALE_SABBREVMONTHNAME13 = 4111
Const LOCALE_SABBREVMONTHNAME2 = 69
Const LOCALE_SABBREVMONTHNAME3 = 70
Const LOCALE_SABBREVMONTHNAME4 = 71
Const LOCALE_SABBREVMONTHNAME5 = 72
Const LOCALE_SABBREVMONTHNAME6 = 73
Const LOCALE_SABBREVMONTHNAME7 = 74
Const LOCALE_SABBREVMONTHNAME8 = 75
Const LOCALE_SABBREVMONTHNAME9 = 76
Const LOCALE_SCOUNTRY = 6
Const LOCALE_SCURRENCY = 20
Const LOCALE_SDATE = 29
Const LOCALE_SDAYNAME1 = 42
Const LOCALE_SDAYNAME2 = 43
Const LOCALE_SDAYNAME3 = 44
Const LOCALE_SDAYNAME4 = 45
Const LOCALE_SDAYNAME5 = 46
Const LOCALE_SDAYNAME6 = 47
Const LOCALE_SDAYNAME7 = 48
Const LOCALE_SDECIMAL = 14
Const LOCALE_SENGCOUNTRY = 4098
Const LOCALE_SENGLANGUAGE = 4097
Const LOCALE_SGROUPING = 16
Const LOCALE_SINTLSYMBOL = 21
Const LOCALE_SLANGUAGE = 2
Const LOCALE_SLIST = 12
Const LOCALE_SLONGDATE = 32
Const LOCALE_SMONDECIMALSEP = 22
Const LOCALE_SMONGROUPING = 24
Const LOCALE_SMONTHNAME1 = 56
Const LOCALE_SMONTHNAME10 = 65
Const LOCALE_SMONTHNAME11 = 66
Const LOCALE_SMONTHNAME12 = 67
Const LOCALE_SMONTHNAME2 = 57
Const LOCALE_SMONTHNAME3 = 58
Const LOCALE_SMONTHNAME4 = 59
Const LOCALE_SMONTHNAME5 = 60
Const LOCALE_SMONTHNAME6 = 61
Const LOCALE_SMONTHNAME7 = 62
Const LOCALE_SMONTHNAME8 = 63
Const LOCALE_SMONTHNAME9 = 64
Const LOCALE_SMONTHOUSANDSEP = 23
Const LOCALE_SNATIVECTRYNAME = 8
Const LOCALE_SNATIVEDIGITS = 19
Const LOCALE_SNATIVELANGNAME = 4
Const LOCALE_SNEGATIVESIGN = 81
Const LOCALE_SPOSITIVESIGN = 80
Const LOCALE_SSHORTDATE = 31
Const LOCALE_STHOUSAND = 15
Const LOCALE_STIME = 30
Const LOCALE_STIMEFORMAT = 4099
Const LOCKFILE_EXCLUSIVE_LOCK = 2
Const LOCKFILE_FAIL_IMMEDIATELY = 1
Const LOGON32_LOGON_BATCH = 4
Const LOGON32_LOGON_INTERACTIVE = 2
Const LOGON32_LOGON_SERVICE = 5
Const LOGON32_PROVIDER_DEFAULT = 0
Const LOGON32_PROVIDER_WINNT35 = 1
Const LOGPIXELSX = 88
Const LOGPIXELSY = 90
Const LPTR = LMEM_FIXED + LMEM_ZEROINIT
Const LPTx = 128
Const lst1 = 1120
Const lst10 = 1129
Const lst11 = 1130
Const lst12 = 1131
Const lst13 = 1132
Const lst14 = 1133
Const lst15 = 1134
Const lst16 = 1135
Const lst2 = 1121
Const lst3 = 1122
Const lst4 = 1123
Const lst5 = 1124
Const lst6 = 1125
Const lst7 = 1126
Const lst8 = 1127
Const lst9 = 1128
Const LTGRAY_BRUSH = 1
Const LZERROR_BADINHANDLE = -1
Const LZERROR_BADOUTHANDLE = -2
Const LZERROR_BADVALUE = -7
Const LZERROR_GLOBLOCK = -6
Const LZERROR_PUBLICLOC = -5
Const LZERROR_READ = -3
Const LZERROR_UNKNOWNALG = -8
Const LZERROR_WRITE = -4
Const MA_ACTIVATE = 1
Const MA_ACTIVATEANDEAT = 2
Const MA_NOACTIVATE = 3
Const MA_NOACTIVATEANDEAT = 4
Const MAC_CHARSET = 77
Const MAILSLOT_NO_MESSAGE = -1
Const MAILSLOT_WAIT_FOREVER = -1
Const MAP_COMPOSITE = 64
Const MAP_FOLDCZONE = 16
Const MAP_FOLDDIGITS = 128
Const MAP_PRECOMPOSED = 32
Const MARKPARITY = 3
Const MARSHAL_E_FIRST = 2147746080
Const MARSHAL_E_LAST = 2147746095
Const MARSHAL_S_FIRST = 262432
Const MARSHAL_S_LAST = 262447
Const MAX_DEFAULTCHAR = 2
Const MAX_LANA = 254
Const MAX_LEADBYTES = 12
Const MAX_MONITORS = 4
Const MAX_PATH = 32
Const MAX_PRIORITY = 99
Const MAXByte = 255
Const MAXCHAR = 127
Const MAXDWORD = 65535
Const MAXERRORLENGTH = 128
Const MAXIMUM_ALLOWED = 33554432
Const MAXLONG = 2147483647
Const MAXPNAMELEN = 32
Const MAXSHORT = 32767
Const MAXSTRETCHBLTMODE = 4
Const MAXWORD = 65535
Const MB_ABORTRETRYIGNORE = 2
Const MB_APPLMODAL = 0
Const MB_COMPOSITE = 2
Const MB_DEFAULT_DESKTOP_ONLY = 131072
Const MB_DEFBUTTON1 = 0
Const MB_DEFBUTTON2 = 256
Const MB_DEFBUTTON3 = 512
Const MB_DEFMASK = 3840
Const MB_ICONASTERISK = 64
Const MB_ICONEXCLAMATION = 48
Const MB_ICONHAND = 16
Const MB_ICONINFORMATION = MB_ICONASTERISK
Const MB_ICONMASK = 240
Const MB_ICONQUESTION = 32
Const MB_ICONSTOP = MB_ICONHAND
Const MB_MISCMASK = 49152
Const MB_MODEMASK = 12288
Const MB_NOFOCUS = 32768
Const MB_OK = 0
Const MB_OKCANCEL = 1
Const MB_PRECOMPOSED = 1
Const MB_RETRYCANCEL = 5
Const MB_SETFOREGROUND = 65536
Const MB_SYSTEMMODAL = 4096
Const MB_TASKMODAL = 8192
Const MB_TYPEMASK = 15
Const MB_USEGLYPHCHARS = 4
Const MB_YESNO = 4
Const MB_YESNOCANCEL = 3
Const MCI_ALL_DEVICE_ID = -1
Const MCI_ANIM_GETDEVCAPS_CAN_REVERSE = 16385
Const MCI_ANIM_GETDEVCAPS_CAN_STRETCH = 16391
Const MCI_ANIM_GETDEVCAPS_FAST_RATE = 16386
Const MCI_ANIM_GETDEVCAPS_MAX_WINDOWS = 16392
Const MCI_ANIM_GETDEVCAPS_NORMAL_RATE = 16388
Const MCI_ANIM_GETDEVCAPS_PALETTES = 16390
Const MCI_ANIM_GETDEVCAPS_SLOW_RATE = 16387
Const MCI_ANIM_INFO_TEXT = 65536
Const MCI_ANIM_OPEN_NOSTATIC = 262144
Const MCI_ANIM_OPEN_PARENT = 131072
Const MCI_ANIM_OPEN_WS = 65536
Const MCI_ANIM_PLAY_FAST = 262144
Const MCI_ANIM_PLAY_REVERSE = 131072
Const MCI_ANIM_PLAY_SCAN = 1048576
Const MCI_ANIM_PLAY_SLOW = 524288
Const MCI_ANIM_PLAY_SPEED = 65536
Const MCI_ANIM_PUT_DESTINATION = 262144
Const MCI_ANIM_PUT_SOURCE = 131072
Const MCI_ANIM_REALIZE_BKGD = 131072
Const MCI_ANIM_REALIZE_NORM = 65536
Const MCI_ANIM_RECT = 65536
Const MCI_ANIM_STATUS_FORWARD = 16386
Const MCI_ANIM_STATUS_HPAL = 16388
Const MCI_ANIM_STATUS_HWND = 16387
Const MCI_ANIM_STATUS_SPEED = 16385
Const MCI_ANIM_STATUS_STRETCH = 16389
Const MCI_ANIM_STEP_FRAMES = 131072
Const MCI_ANIM_STEP_REVERSE = 65536
Const MCI_ANIM_UPDATE_HDC = 131072
Const MCI_ANIM_WHERE_DESTINATION = 262144
Const MCI_ANIM_WHERE_SOURCE = 131072
Const MCI_ANIM_WINDOW_DEFAULT = 0
Const MCI_ANIM_WINDOW_DISABLE_STRETCH = 2097152
Const MCI_ANIM_WINDOW_ENABLE_STRETCH = 1048576
Const MCI_ANIM_WINDOW_HWND = 65536
Const MCI_ANIM_WINDOW_STATE = 262144
Const MCI_ANIM_WINDOW_TEXT = 524288
Const MCI_BREAK = 2065
Const MCI_BREAK_HWND = 512
Const MCI_BREAK_KEY = 256
Const MCI_BREAK_OFF = 1024
Const MCI_CD_OFFSET = 1088
Const MCI_CLOSE = 2052
Const MCI_COPY = 2130
Const MCI_CUE = 2096
Const MCI_CUT = 2129
Const MCI_DELETE = 2134
Const MCI_DEVTYPE_ANIMATION = 519
Const MCI_DEVTYPE_CD_AUDIO = 516
Const MCI_DEVTYPE_DAT = 517
Const MCI_DEVTYPE_DIGITAL_VIDEO = 520
Const MCI_DEVTYPE_FIRST_USER = 4096
Const MCI_DEVTYPE_OTHER = 521
Const MCI_DEVTYPE_OVERLAY = 515
Const MCI_DEVTYPE_SCANNER = 518
Const MCI_DEVTYPE_SEQUENCER = 523
Const MCI_DEVTYPE_VCR = 513
Const MCI_DEVTYPE_FIRST = MCI_DEVTYPE_VCR
Const MCI_DEVTYPE_LAST = MCI_DEVTYPE_SEQUENCER
Const MCI_DEVTYPE_VIDEODISC = 514
Const MCI_DEVTYPE_WAVEFORM_AUDIO = 522
Const MCI_ESCAPE = 2053
Const MCI_FIRST = 2048
Const MCI_FORMAT_BYTES = 8
Const MCI_FORMAT_FRAMES = 3
Const MCI_FORMAT_HMS = 1
Const MCI_FORMAT_MILLISECONDS = 0
Const MCI_FORMAT_MSF = 2
Const MCI_FORMAT_SAMPLES = 9
Const MCI_FORMAT_SMPTE_24 = 4
Const MCI_FORMAT_SMPTE_25 = 5
Const MCI_FORMAT_SMPTE_30 = 6
Const MCI_FORMAT_SMPTE_30DROP = 7
Const MCI_FORMAT_TMSF = 10
Const MCI_FREEZE = 2116
Const MCI_FROM = 4
Const MCI_GETDEVCAPS = 2059
Const MCI_GETDEVCAPS_CAN_EJECT = 7
Const MCI_GETDEVCAPS_CAN_PLAY = 8
Const MCI_GETDEVCAPS_CAN_RECORD = 1
Const MCI_GETDEVCAPS_CAN_SAVE = 9
Const MCI_GETDEVCAPS_COMPOUND_DEVICE = 6
Const MCI_GETDEVCAPS_DEVICE_TYPE = 4
Const MCI_GETDEVCAPS_HAS_AUDIO = 2
Const MCI_GETDEVCAPS_HAS_VIDEO = 3
Const MCI_GETDEVCAPS_ITEM = 256
Const MCI_GETDEVCAPS_USES_FILES = 5
Const MCI_INFO = 2058
Const MCI_INFO_FILE = 512
Const MCI_INFO_PRODUCT = 256
Const MCI_LAST = 4095
Const MCI_LOAD = 2128
Const MCI_LOAD_FILE = 256
Const MCI_NOTIFY = 1
Const MCI_NOTIFY_ABORTED = 4
Const MCI_NOTIFY_FAILURE = 8
Const MCI_NOTIFY_SUCCESSFUL = 1
Const MCI_NOTIFY_SUPERSEDED = 2
Const MCI_OPEN = 2051
Const MCI_OPEN_ALIAS = 1024
Const MCI_OPEN_ELEMENT = 512
Const MCI_OPEN_ELEMENT_ID = 2048
Const MCI_OPEN_SHAREABLE = 256
Const MCI_OPEN_TYPE = 8192
Const MCI_OPEN_TYPE_ID = 4096
Const MCI_OVLY_GETDEVCAPS_CAN_FREEZE = 16386
Const MCI_OVLY_GETDEVCAPS_CAN_STRETCH = 16385
Const MCI_OVLY_GETDEVCAPS_MAX_WINDOWS = 16387
Const MCI_OVLY_INFO_TEXT = 65536
Const MCI_OVLY_OPEN_PARENT = 131072
Const MCI_OVLY_OPEN_WS = 65536
Const MCI_OVLY_PUT_DESTINATION = 262144
Const MCI_OVLY_PUT_FRAME = 524288
Const MCI_OVLY_PUT_SOURCE = 131072
Const MCI_OVLY_PUT_VIDEO = 1048576
Const MCI_OVLY_RECT = 65536
Const MCI_OVLY_STATUS_HWND = 16385
Const MCI_OVLY_STATUS_STRETCH = 16386
Const MCI_OVLY_WHERE_DESTINATION = 262144
Const MCI_OVLY_WHERE_FRAME = 524288
Const MCI_OVLY_WHERE_SOURCE = 131072
Const MCI_OVLY_WHERE_VIDEO = 1048576
Const MCI_OVLY_WINDOW_DEFAULT = 0
Const MCI_OVLY_WINDOW_DISABLE_STRETCH = 2097152
Const MCI_OVLY_WINDOW_ENABLE_STRETCH = 1048576
Const MCI_OVLY_WINDOW_HWND = 65536
Const MCI_OVLY_WINDOW_STATE = 262144
Const MCI_OVLY_WINDOW_TEXT = 524288
Const MCI_PASTE = 2131
Const MCI_PAUSE = 2057
Const MCI_PLAY = 2054
Const MCI_PUT = 2114
Const MCI_REALIZE = 2112
Const MCI_RECORD = 2063
Const MCI_RECORD_INSERT = 256
Const MCI_RECORD_OVERWRITE = 512
Const MCI_RESUME = 2133
Const MCI_SAVE = 2067
Const MCI_SAVE_FILE = 256
Const MCI_SEEK = 2055
Const MCI_SEEK_TO_END = 512
Const MCI_SEEK_TO_START = 256
Const MCI_SEQ_OFFSET = 1216
Const MCI_SEQ_DIV_PPQN = 0 + MCI_SEQ_OFFSET
Const MCI_SEQ_DIV_SMPTE_24 = 1 + MCI_SEQ_OFFSET
Const MCI_SEQ_DIV_SMPTE_25 = 2 + MCI_SEQ_OFFSET
Const MCI_SEQ_DIV_SMPTE_30 = 4 + MCI_SEQ_OFFSET
Const MCI_SEQ_DIV_SMPTE_30DROP = 3 + MCI_SEQ_OFFSET
Const MCI_SEQ_FILE = 16386
Const MCI_SEQ_FORMAT_SONGPTR = 16385
Const MCI_SEQ_MAPPER = 65535
Const MCI_SEQ_MIDI = 16387
Const MCI_SEQ_NONE = 65533
Const MCI_SEQ_SET_MASTER = 524288
Const MCI_SEQ_SET_OFFSET = 16777216
Const MCI_SEQ_SET_PORT = 131072
Const MCI_SEQ_SET_SLAVE = 262144
Const MCI_SEQ_SET_TEMPO = 65536
Const MCI_SEQ_SMPTE = 16388
Const MCI_SEQ_STATUS_DIVTYPE = 16394
Const MCI_SEQ_STATUS_MASTER = 16392
Const MCI_SEQ_STATUS_OFFSET = 16393
Const MCI_SEQ_STATUS_PORT = 16387
Const MCI_SEQ_STATUS_SLAVE = 16391
Const MCI_SEQ_STATUS_TEMPO = 16386
Const MCI_SET = 2061
Const MCI_SET_AUDIO = 2048
Const MCI_SET_AUDIO_ALL = 16385
Const MCI_SET_AUDIO_LEFT = 16386
Const MCI_SET_AUDIO_RIGHT = 16387
Const MCI_SET_DOOR_CLOSED = 512
Const MCI_SET_DOOR_OPEN = 256
Const MCI_SET_OFF = 16384
Const MCI_SET_ON = 8192
Const MCI_SET_TIME_FORMAT = 1024
Const MCI_SET_VIDEO = 4096
Const MCI_SOUND = 2066
Const MCI_SOUND_NAME = 256
Const MCI_SPIN = 2060
Const MCI_STATUS = 2068
Const MCI_STATUS_CURRENT_TRACK = 8
Const MCI_STATUS_ITEM = 256
Const MCI_STATUS_LENGTH = 1
Const MCI_STATUS_MEDIA_PRESENT = 5
Const MCI_STATUS_MODE = 4
Const MCI_STATUS_NUMBER_OF_TRACKS = 3
Const MCI_STATUS_POSITION = 2
Const MCI_STATUS_READY = 7
Const MCI_STATUS_START = 512
Const MCI_STATUS_TIME_FORMAT = 6
Const MCI_STEP = 2062
Const MCI_STOP = 2056
Const MCI_STRING_OFFSET = 512
Const MCI_SYSINFO = 2064
Const MCI_SYSINFO_INSTALLNAME = 2048
Const MCI_SYSINFO_NAME = 1024
Const MCI_SYSINFO_OPEN = 512
Const MCI_SYSINFO_QUANTITY = 256
Const MCI_TO = 8
Const MCI_TRACK = 16
Const MCI_UNFREEZE = 2117
Const MCI_UPDATE = 2132
Const MCI_USER_MESSAGES = MCI_FIRST + 1024
Const MCI_VD_ESCAPE_STRING = 256
Const MCI_VD_FORMAT_TRACK = 16385
Const MCI_VD_GETDEVCAPS_CAN_REVERSE = 16386
Const MCI_VD_GETDEVCAPS_CAV = 131072
Const MCI_VD_GETDEVCAPS_CLV = 65536
Const MCI_VD_GETDEVCAPS_FAST_RATE = 16387
Const MCI_VD_GETDEVCAPS_NORMAL_RATE = 16389
Const MCI_VD_GETDEVCAPS_SLOW_RATE = 16388
Const MCI_VD_OFFSET = 1024
Const MCI_VD_MEDIA_CAV = MCI_VD_OFFSET + 3
Const MCI_VD_MEDIA_CLV = MCI_VD_OFFSET + 2
Const MCI_VD_MEDIA_OTHER = MCI_VD_OFFSET + 4
Const MCI_VD_MODE_PARK = MCI_VD_OFFSET + 1
Const MCI_VD_PLAY_FAST = 131072
Const MCI_VD_PLAY_REVERSE = 65536
Const MCI_VD_PLAY_SCAN = 524288
Const MCI_VD_PLAY_SLOW = 1048576
Const MCI_VD_PLAY_SPEED = 262144
Const MCI_VD_SEEK_REVERSE = 65536
Const MCI_VD_SPIN_DOWN = 131072
Const MCI_VD_SPIN_UP = 65536
Const MCI_VD_STATUS_DISC_SIZE = 16390
Const MCI_VD_STATUS_FORWARD = 16387
Const MCI_VD_STATUS_MEDIA_TYPE = 16388
Const MCI_VD_STATUS_SIDE = 16389
Const MCI_VD_STATUS_SPEED = 16386
Const MCI_VD_STEP_FRAMES = 65536
Const MCI_VD_STEP_REVERSE = 131072
Const MCI_WAIT = 2
Const MCI_WAVE_GETDEVCAPS_INPUTS = 16385
Const MCI_WAVE_GETDEVCAPS_OUTPUTS = 16386
Const MCI_WAVE_INPUT = 4194304
Const MCI_WAVE_OFFSET = 1152
Const MCI_WAVE_MAPPER = MCI_WAVE_OFFSET + 1
Const MCI_WAVE_OPEN_BUFFER = 65536
Const MCI_WAVE_OUTPUT = 8388608
Const MCI_WAVE_PCM = MCI_WAVE_OFFSET + 0
Const MCI_WAVE_SET_ANYINPUT = 67108864
Const MCI_WAVE_SET_ANYOUTPUT = 134217728
Const MCI_WAVE_SET_AVGBYTESPERSEC = 524288
Const MCI_WAVE_SET_BITSPERSAMPLE = 2097152
Const MCI_WAVE_SET_BLOCKALIGN = 1048576
Const MCI_WAVE_SET_CHANNELS = 131072
Const MCI_WAVE_SET_FORMATTAG = 65536
Const MCI_WAVE_SET_SAMPLESPERSEC = 262144
Const MCI_WAVE_STATUS_AVGBYTESPERSEC = 16388
Const MCI_WAVE_STATUS_BITSPERSAMPLE = 16390
Const MCI_WAVE_STATUS_BLOCKALIGN = 16389
Const MCI_WAVE_STATUS_CHANNELS = 16386
Const MCI_WAVE_STATUS_FORMATTAG = 16385
Const MCI_WAVE_STATUS_LEVEL = 16391
Const MCI_WAVE_STATUS_SAMPLESPERSEC = 16387
Const MCI_WHERE = 2115
Const MCI_WINDOW = 2113
Const MCIERR_BASE = 256
Const MCIERR_BAD_CONSTANT = MCIERR_BASE + 34
Const MCIERR_BAD_INTEGER = MCIERR_BASE + 14
Const MCIERR_BAD_TIME_FORMAT = MCIERR_BASE + 37
Const MCIERR_CANNOT_LOAD_DRIVER = MCIERR_BASE + 10
Const MCIERR_CANNOT_USE_ALL = MCIERR_BASE + 23
Const MCIERR_CREATEWINDOW = MCIERR_BASE + 91
Const MCIERR_CUSTOM_DRIVER_BASE = MCIERR_BASE + 256
Const MCIERR_DEVICE_LENGTH = MCIERR_BASE + 54
Const MCIERR_DEVICE_LOCKED = MCIERR_BASE + 32
Const MCIERR_DEVICE_NOT_INSTALLED = MCIERR_BASE + 50
Const MCIERR_DEVICE_NOT_READY = MCIERR_BASE + 20
Const MCIERR_DEVICE_OPEN = MCIERR_BASE + 9
Const MCIERR_DEVICE_ORD_LENGTH = MCIERR_BASE + 55
Const MCIERR_DEVICE_TYPE_REQUIRED = MCIERR_BASE + 31
Const MCIERR_DRIVER = MCIERR_BASE + 22
Const MCIERR_DRIVER_INTERNAL = MCIERR_BASE + 16
Const MCIERR_DUPLICATE_ALIAS = MCIERR_BASE + 33
Const MCIERR_DUPLICATE_FLAGS = MCIERR_BASE + 39
Const MCIERR_EXTENSION_NOT_FOUND = MCIERR_BASE + 25
Const MCIERR_EXTRA_CHARACTERS = MCIERR_BASE + 49
Const MCIERR_FILE_NOT_FOUND = MCIERR_BASE + 19
Const MCIERR_FILE_NOT_SAVED = MCIERR_BASE + 30
Const MCIERR_FILE_READ = MCIERR_BASE + 92
Const MCIERR_FILE_WRITE = MCIERR_BASE + 93
Const MCIERR_FILENAME_REQUIRED = MCIERR_BASE + 48
Const MCIERR_FLAGS_NOT_COMPATIBLE = MCIERR_BASE + 28
Const MCIERR_GET_CD = MCIERR_BASE + 51
Const MCIERR_HARDWARE = MCIERR_BASE + 6
Const MCIERR_ILLEGAL_FOR_AUTO_OPEN = MCIERR_BASE + 47
Const MCIERR_INTERNAL = MCIERR_BASE + 21
Const MCIERR_INVALID_DEVICE_ID = MCIERR_BASE + 1
Const MCIERR_INVALID_DEVICE_NAME = MCIERR_BASE + 7
Const MCIERR_INVALID_FILE = MCIERR_BASE + 40
Const MCIERR_MISSING_COMMAND_STRING = MCIERR_BASE + 11
Const MCIERR_MISSING_DEVICE_NAME = MCIERR_BASE + 36
Const MCIERR_MISSING_PARAMETER = MCIERR_BASE + 17
Const MCIERR_MISSING_STRING_ARGUMENT = MCIERR_BASE + 13
Const MCIERR_MULTIPLE = MCIERR_BASE + 24
Const MCIERR_MUST_USE_SHAREABLE = MCIERR_BASE + 35
Const MCIERR_NEW_REQUIRES_ALIAS = MCIERR_BASE + 43
Const MCIERR_NO_CLOSING_QUOTE = MCIERR_BASE + 38
Const MCIERR_NO_ELEMENT_ALLOWED = MCIERR_BASE + 45
Const MCIERR_NO_INTEGER = MCIERR_BASE + 56
Const MCIERR_NO_WINDOW = MCIERR_BASE + 90
Const MCIERR_NONAPPLICABLE_FUNCTION = MCIERR_BASE + 46
Const MCIERR_NOTIFY_ON_AUTO_OPEN = MCIERR_BASE + 44
Const MCIERR_NULL_PARAMETER_BLOCK = MCIERR_BASE + 41
Const MCIERR_OUT_OF_MEMORY = MCIERR_BASE + 8
Const MCIERR_OUTOFRANGE = MCIERR_BASE + 26
Const MCIERR_PARAM_OVERFLOW = MCIERR_BASE + 12
Const MCIERR_PARSER_INTERNAL = MCIERR_BASE + 15
Const MCIERR_SEQ_DIV_INCOMPATIBLE = MCIERR_BASE + 80
Const MCIERR_SEQ_NOMIDIPRESENT = MCIERR_BASE + 87
Const MCIERR_SEQ_PORT_INUSE = MCIERR_BASE + 81
Const MCIERR_SEQ_PORT_MAPNODEVICE = MCIERR_BASE + 83
Const MCIERR_SEQ_PORT_MISCERROR = MCIERR_BASE + 84
Const MCIERR_SEQ_PORT_NONEXISTENT = MCIERR_BASE + 82
Const MCIERR_SEQ_PORTUNSPECIFIED = MCIERR_BASE + 86
Const MCIERR_SEQ_TIMER = MCIERR_BASE + 85
Const MCIERR_SET_CD = MCIERR_BASE + 52
Const MCIERR_SET_DRIVE = MCIERR_BASE + 53
Const MCIERR_UNNAMED_RESOURCE = MCIERR_BASE + 42
Const MCIERR_UNRECOGNIZED_COMMAND = MCIERR_BASE + 5
Const MCIERR_UNRECOGNIZED_KEYWORD = MCIERR_BASE + 3
Const MCIERR_UNSUPPORTED_FUNCTION = MCIERR_BASE + 18
Const MCIERR_WAVE_INPUTSINUSE = MCIERR_BASE + 66
Const MCIERR_WAVE_INPUTSUNSUITABLE = MCIERR_BASE + 72
Const MCIERR_WAVE_INPUTUNSPECIFIED = MCIERR_BASE + 69
Const MCIERR_WAVE_OUTPUTSINUSE = MCIERR_BASE + 64
Const MCIERR_WAVE_OUTPUTSUNSUITABLE = MCIERR_BASE + 70
Const MCIERR_WAVE_OUTPUTUNSPECIFIED = MCIERR_BASE + 68
Const MCIERR_WAVE_SETINPUTINUSE = MCIERR_BASE + 67
Const MCIERR_WAVE_SETINPUTUNSUITABLE = MCIERR_BASE + 73
Const MCIERR_WAVE_SETOUTPUTINUSE = MCIERR_BASE + 65
Const MCIERR_WAVE_SETOUTPUTUNSUITABLE = MCIERR_BASE + 71
Const MDIS_ALLCHILDSTYLES = 1
Const MDITILE_HORIZONTAL = 1
Const MDITILE_SKIPDISABLED = 2
Const MDITILE_VERTICAL = 0
Const MDM_BLIND_DIAL = 512
Const MDM_CCITT_OVERRIDE = 64
Const MDM_CELLULAR = 8
Const MDM_COMPRESSION = 1
Const MDM_ERROR_CONTROL = 2
Const MDM_FLOWCONTROL_HARD = 16
Const MDM_FLOWCONTROL_SOFT = 32
Const MDM_FORCED_EC = 4
Const MDM_SPEED_ADJUST = 128
Const MDM_TONE_DIAL = 256
Const MDM_V23_OVERRIDE = 1024
Const MDMSPKR_CALLSETUP = 3
Const MDMSPKR_DIAL = 1
Const MDMSPKR_OFF = 0
Const MDMSPKR_ON = 2
Const MDMSPKRFLAG_CALLSETUP = 8
Const MDMSPKRFLAG_DIAL = 2
Const MDMSPKRFLAG_OFF = 1
Const MDMSPKRFLAG_ON = 4
Const MDMVOL_HIGH = 2
Const MDMVOL_LOW = 0
Const MDMVOL_MEDIUM = 1
Const MDMVOLFLAG_HIGH = 4
Const MDMVOLFLAG_LOW = 1
Const MDMVOLFLAG_MEDIUM = 2
Const MEM_E_INVALID_LINK = 2148007952
Const MEM_E_INVALID_ROOT = 2148007945
Const MEM_E_INVALID_SIZE = 2148007953
Const MENU_EVENT = 8
Const MERGECOPY = 12583114
Const MERGEPAINT = 12255782
Const META_ANIMATEPALETTE = 1078
Const META_ARC = 2071
Const META_BITBLT = 2338
Const META_CHORD = 2096
Const META_CREATEBRUSHINDIRECT = 764
Const META_CREATEFONTINDIRECT = 763
Const META_CREATEPALETTE = 247
Const META_CREATEPATTERNBRUSH = 505
Const META_CREATEPENINDIRECT = 762
Const META_CREATEREGION = 1791
Const META_DELETEOBJECT = 496
Const META_DIBBITBLT = 2368
Const META_DIBCREATEPATTERNBRUSH = 322
Const META_DIBSTRETCHBLT = 2881
Const META_ELLIPSE = 1048
Const META_ESCAPE = 1574
Const META_EXCLUDECLIPRECT = 1045
Const META_EXTFLOODFILL = 1352
Const META_EXTTEXTOUT = 2610
Const META_FILLREGION = 552
Const META_FLOODFILL = 1049
Const META_FRAMEREGION = 1065
Const META_INTERSECTCLIPRECT = 1046
Const META_INVERTREGION = 298
Const META_LINETO = 531
Const META_MOVETO = 532
Const META_OFFSETCLIPRGN = 544
Const META_OFFSETVIEWPORTORG = 529
Const META_OFFSETWINDOWORG = 527
Const META_PAINTREGION = 299
Const META_PATBLT = 1565
Const META_PIE = 2074
Const META_POLYGON = 804
Const META_POLYLINE = 805
Const META_POLYPOLYGON = 1336
Const META_REALIZEPALETTE = 53
Const META_RECTANGLE = 1051
Const META_RESIZEPALETTE = 313
Const META_RESTOREDC = 295
Const META_ROUNDRECT = 1564
Const META_SAVEDC = 30
Const META_SCALEVIEWPORTEXT = 1042
Const META_SCALEWINDOWEXT = 1040
Const META_SELECTCLIPREGION = 300
Const META_SELECTOBJECT = 301
Const META_SELECTPALETTE = 564
Const META_SETBKCOLOR = 513
Const META_SETBKMODE = 258
Const META_SETDIBTODEV = 3379
Const META_SETMAPMODE = 259
Const META_SETMAPPERFLAGS = 561
Const META_SETPALENTRIES = 55
Const META_SETPIXEL = 1055
Const META_SETPOLYFILLMODE = 262
Const META_SETRELABS = 261
Const META_SETROP2 = 260
Const META_SETSTRETCHBLTMODE = 263
Const META_SETTEXTALIGN = 302
Const META_SETTEXTCHAREXTRA = 264
Const META_SETTEXTCOLOR = 521
Const META_SETTEXTJUSTIFICATION = 522
Const META_SETVIEWPORTEXT = 526
Const META_SETVIEWPORTORG = 525
Const META_SETWINDOWEXT = 524
Const META_SETWINDOWORG = 523
Const META_STRETCHBLT = 2851
Const META_STRETCHDIB = 3907
Const META_TEXTOUT = 1313
Const MEVT_F_CALLBACK = 1073741824
Const MEVT_F_LONG = 2147483648
Const MEVT_F_SHORT = 0
Const MF_APPEND = 256
Const MF_BITMAP = 4
Const MF_BYCOMMAND = 0
Const MF_BYPOSITION = 1024
Const MF_CALLBACKS = 134217728
Const MF_CHANGE = 128
Const MF_CHECKED = 8
Const MF_CONV = 1073741824
Const MF_DELETE = 512
Const MF_DISABLED = 2
Const MF_ENABLED = 0
Const MF_END = 128
Const MF_ERRORS = 268435456
Const MF_GRAYED = 1
Const MF_HELP = 16384
Const MF_HILITE = 128
Const MF_HSZ_INFO = 16777216
Const MF_INSERT = 0
Const MF_LINKS = 536870912
Const MF_MASK = 4278190080
Const MF_MENUBARBREAK = 32
Const MF_MENUBREAK = 64
Const MF_MOUSESELECT = 32768
Const MF_OWNERDRAW = 256
Const MF_POPUP = 16
Const MF_POSTMSGS = 67108864
Const MF_REMOVE = 4096
Const MF_SENDMSGS = 33554432
Const MF_SEPARATOR = 2048
Const MF_STRING = 0
Const MF_SYSMENU = 8192
Const MF_UNCHECKED = 0
Const MF_UNHILITE = 0
Const MF_USECHECKBITMAPS = 512
Const MFCOMMENT = 15
Const MH_CLEANUP = 4
Const MH_CREATE = 1
Const MH_DELETE = 3
Const MH_KEEP = 2
Const MHDR_DONE = 1
Const MHDR_INQUEUE = 4
Const MHDR_PREPARED = 2
Const MHDR_VALID = 7
Const MIDI_CACHE_ALL = 1
Const MIDI_CACHE_BESTFIT = 2
Const MIDI_CACHE_QUERY = 3
Const MIDI_CACHE_VALID = 7
Const MIDI_IO_STATUS = 32
Const MIDI_MAPPER = -1
Const MIDI_UNCACHE = 4
Const MIDICAPS_CACHE = 4
Const MIDICAPS_LRVOLUME = 2
Const MIDICAPS_STREAM = 8
Const MIDICAPS_VOLUME = 1
Const MIDIERR_BASE = 64
Const MIDIERR_INVALIDSETUP = MIDIERR_BASE + 5
Const MIDIERR_LASTERROR = MIDIERR_BASE + 5
Const MIDIERR_NODEVICE = MIDIERR_BASE + 4
Const MIDIERR_NOMAP = MIDIERR_BASE + 2
Const MIDIERR_NOTREADY = MIDIERR_BASE + 3
Const MIDIERR_STILLPLAYING = MIDIERR_BASE + 1
Const MIDIERR_UNPREPARED = MIDIERR_BASE + 0
Const MIDIMAPPER = -1
Const MIDIPROP_GET = 1073741824
Const MIDIPROP_SET = 2147483648
Const MIDIPROP_TEMPO = 2
Const MIDIPROP_TIMEDIV = 1
Const MIN_PRIORITY = 1
Const MINCHAR = 128
Const MINLONG = 2147483648
Const MINSHORT = 32768
Const MIXER_GETCONTROLDETAILSF_LISTTEXT = 1
Const MIXER_GETCONTROLDETAILSF_QUERYMASK = 15
Const MIXER_GETCONTROLDETAILSF_VALUE = 0
Const MIXER_GETLINECONTROLSF_ALL = 0
Const MIXER_GETLINECONTROLSF_ONEBYID = 1
Const MIXER_GETLINECONTROLSF_ONEBYTYPE = 2
Const MIXER_GETLINECONTROLSF_QUERYMASK = 15
Const MIXER_GETLINEINFOF_COMPONENTTYPE = 3
Const MIXER_GETLINEINFOF_DESTINATION = 0
Const MIXER_GETLINEINFOF_LINEID = 2
Const MIXER_GETLINEINFOF_QUERYMASK = 15
Const MIXER_GETLINEINFOF_SOURCE = 1
Const MIXER_GETLINEINFOF_TARGETTYPE = 4
Const MIXER_LONG_NAME_CHARS = 64
Const MIXER_OBJECTF_AUX = 1342177280
Const MIXER_OBJECTF_HANDLE = 2147483648
Const MIXER_OBJECTF_MIDIIN = 1073741824
Const MIXER_OBJECTF_MIDIOUT = 805306368
Const MIXER_OBJECTF_MIXER = 0
Const MIXER_OBJECTF_WAVEIN = 536870912
Const MIXER_OBJECTF_WAVEOUT = 268435456
Const MIXER_SETCONTROLDETAILSF_CUSTOM = 1
Const MIXER_SETCONTROLDETAILSF_QUERYMASK = 15
Const MIXER_SETCONTROLDETAILSF_VALUE = 0
Const MIXER_SHORT_NAME_CHARS = 16
Const MIXERCONTROL_CONTROLF_DISABLED = 2147483648
Const MIXERCONTROL_CONTROLF_MULTIPLE = 2
Const MIXERCONTROL_CONTROLF_UNIFORM = 1
Const MIXERCONTROL_CT_CLASS_CUSTOM = 0
Const MIXERCONTROL_CT_CLASS_FADER = 1342177280
Const MIXERCONTROL_CT_CLASS_LIST = 1879048192
Const MIXERCONTROL_CT_CLASS_MASK = 4026531840
Const MIXERCONTROL_CT_CLASS_METER = 268435456
Const MIXERCONTROL_CT_CLASS_NUMBER = 805306368
Const MIXERCONTROL_CT_CLASS_SLIDER = 1073741824
Const MIXERCONTROL_CT_CLASS_SWITCH = 536870912
Const MIXERCONTROL_CT_CLASS_TIME = 1610612736
Const MIXERCONTROL_CT_SC_LIST_MULTIPLE = 16777216
Const MIXERCONTROL_CT_SC_LIST_SINGLE = 0
Const MIXERCONTROL_CT_SC_METER_POLLED = 0
Const MIXERCONTROL_CT_SC_SWITCH_BOOLEAN = 0
Const MIXERCONTROL_CT_SC_SWITCH_BUTTON = 16777216
Const MIXERCONTROL_CT_SC_TIME_MICROSECS = 0
Const MIXERCONTROL_CT_SC_TIME_MILLISECS = 16777216
Const MIXERCONTROL_CT_SUBCLASS_MASK = 251658240
Const MIXERCONTROL_CT_UNITS_BOOLEAN = 65536
Const MIXERCONTROL_CT_UNITS_CUSTOM = 0
Const MIXERCONTROL_CT_UNITS_DECIBELS = 262144
Const MIXERCONTROL_CT_UNITS_MASK = 16711680
Const MIXERCONTROL_CT_UNITS_PERCENT = 327680
Const MIXERCONTROL_CT_UNITS_SIGNED = 131072
Const MIXERCONTROL_CT_UNITS_UNSIGNED = 196608
Const MIXERLINE_LINEF_ACTIVE = 1
Const MIXERLINE_LINEF_DISCONNECTED = 32768
Const MIXERLINE_LINEF_SOURCE = 2147483648
Const MIXERLINE_TARGETTYPE_AUX = 5
Const MIXERLINE_TARGETTYPE_MIDIIN = 4
Const MIXERLINE_TARGETTYPE_MIDIOUT = 3
Const MIXERLINE_TARGETTYPE_UNDEFINED = 0
Const MIXERLINE_TARGETTYPE_WAVEIN = 2
Const MIXERLINE_TARGETTYPE_WAVEOUT = 1
Const MIXERR_BASE = 1024
Const MIXERR_INVALCONTROL = MIXERR_BASE + 1
Const MIXERR_INVALLINE = MIXERR_BASE + 0
Const MIXERR_INVALVALUE = MIXERR_BASE + 2
Const MIXERR_LASTERROR = MIXERR_BASE + 2
Const MK_CONTROL = 8
Const MK_E_CANTOPENFILE = 2147746282
Const MK_E_CONNECTMANUALLY = 2147746272
Const MK_E_ENUMERATION_FAILED = 2147746287
Const MK_E_EXCEEDEDDEADLINE = 2147746273
Const MK_E_FIRST = 2147746272
Const MK_E_INTERMEDIATEINTERFACENOTSUPPORTED = 2147746279
Const MK_E_INVALIDEXTENSION = 2147746278
Const MK_E_LAST = 2147746287
Const MK_E_MUSTBOTHERUSER = 2147746283
Const MK_E_NEEDGENERIC = 2147746274
Const MK_E_NO_NORMALIZED = 2148007943
Const MK_E_NOINVERSE = 2147746284
Const MK_E_NOOBJECT = 2147746277
Const MK_E_NOPREFIX = 2147746286
Const MK_E_NOSTORAGE = 2147746285
Const MK_E_NOTBINDABLE = 2147746280
Const MK_E_NOTBOUND = 2147746281
Const MK_E_SYNTAX = 2147746276
Const MK_E_UNAVAILABLE = 2147746275
Const MK_LBUTTON = 1
Const MK_MBUTTON = 16
Const MK_RBUTTON = 2
Const MK_S_FIRST = 262624
Const MK_S_HIM = 262629
Const MK_S_LAST = 262639
Const MK_S_ME = 262628
Const MK_S_MONIKERALREADYREGISTERED = 262631
Const MK_S_REDUCED_TO_SELF = 262626
Const MK_S_US = 262630
Const MK_SHIFT = 4
Const MM_ADLIB = 9
Const MM_ANISOTROPIC = 8
Const MM_HIENGLISH = 5
Const MM_HIMETRIC = 3
Const MM_ISOTROPIC = 7
Const MM_JOY1BUTTONDOWN = 949
Const MM_JOY1BUTTONUP = 951
Const MM_JOY1MOVE = 928
Const MM_JOY1ZMOVE = 930
Const MM_JOY2BUTTONDOWN = 950
Const MM_JOY2BUTTONUP = 952
Const MM_JOY2MOVE = 929
Const MM_JOY2ZMOVE = 931
Const MM_LOENGLISH = 4
Const MM_LOMETRIC = 2
Const MM_MAX = MM_ANISOTROPIC
Const MM_MCINOTIFY = 953
Const MM_MCISIGNAL = 971
Const MM_MCISYSTEM_STRING = 970
Const MM_MICROSOFT = 1
Const MM_MIDI_MAPPER = 1
Const MM_MIM_CLOSE = 962
Const MM_MIM_DATA = 963
Const MM_MIM_ERROR = 965
Const MM_MIM_LONGDATA = 964
Const MM_MIM_LONGERROR = 966
Const MM_MIM_MOREDATA = 972
Const MM_MIM_OPEN = 961
Const MM_MOM_CLOSE = 968
Const MM_MOM_DONE = 969
Const MM_MOM_OPEN = 967
Const MM_MOM_POSITIONCB = 970
Const MM_MPU401_MIDIIN = 11
Const MM_MPU401_MIDIOUT = 10
Const MM_PC_JOYSTICK = 12
Const MM_SNDBLST_MIDIIN = 4
Const MM_SNDBLST_MIDIOUT = 3
Const MM_SNDBLST_SYNTH = 5
Const MM_SNDBLST_WAVEIN = 7
Const MM_SNDBLST_WAVEOUT = 6
Const MM_TEXT = 1
Const MM_TWIPS = 6
Const MM_WAVE_MAPPER = 2
Const MM_WIM_CLOSE = 959
Const MM_WIM_DATA = 960
Const MM_WIM_OPEN = 958
Const MM_WOM_CLOSE = 956
Const MM_WOM_DONE = 957
Const MM_WOM_OPEN = 955
Const MMIO_ALLOCBUF = 65536
Const MMIO_COMPAT = 0
Const MMIO_CREATE = 4096
Const MMIO_CREATELIST = 64
Const MMIO_CREATERIFF = 32
Const MMIO_DEFAULTBUFFER = 8192
Const MMIO_DELETE = 512
Const MMIO_DENYNONE = 64
Const MMIO_DENYREAD = 48
Const MMIO_DENYWRITE = 32
Const MMIO_DIRTY = 268435456
Const MMIO_EMPTYBUF = 16
Const MMIO_EXCLUSIVE = 16
Const MMIO_EXIST = 16384
Const MMIO_FHOPEN = 16
Const MMIO_FINDCHUNK = 16
Const MMIO_FINDLIST = 64
Const MMIO_FINDPROC = 262144
Const MMIO_FINDRIFF = 32
Const MMIO_GETTEMP = 131072
Const MMIO_INSTALLPROC = 65536
Const MMIO_OPEN_VALID = 262143
Const MMIO_PARSE = 256
Const MMIO_PUBLICPROC = 268435456
Const MMIO_READ = 0
Const MMIO_READWRITE = 2
Const MMIO_REMOVEPROC = 131072
Const MMIO_RWMODE = 3
Const MMIO_SHAREMODE = 112
Const MMIO_TOUPPER = 16
Const MMIO_UNICODEPROC = 16777216
Const MMIO_VALIDPROC = 285671424
Const MMIO_WRITE = 1
Const MMIOERR_BASE = 256
Const MMIOERR_CANNOTCLOSE = MMIOERR_BASE + 4
Const MMIOERR_CANNOTEXPAND = MMIOERR_BASE + 8
Const MMIOERR_CANNOTOPEN = MMIOERR_BASE + 3
Const MMIOERR_CANNOTREAD = MMIOERR_BASE + 5
Const MMIOERR_CANNOTSEEK = MMIOERR_BASE + 7
Const MMIOERR_CANNOTWRITE = MMIOERR_BASE + 6
Const MMIOERR_CHUNKNOTFOUND = MMIOERR_BASE + 9
Const MMIOERR_FILENOTFOUND = MMIOERR_BASE + 1
Const MMIOERR_OUTOFMEMORY = MMIOERR_BASE + 2
Const MMIOERR_UNBUFFERED = MMIOERR_BASE + 10
Const MMIOM_CLOSE = 4
Const MMIOM_OPEN = 3
Const MMIOM_READ = MMIO_READ
Const MMIOM_RENAME = 6
Const MMIOM_SEEK = 2
Const MMIOM_USER = 32768
Const MMIOM_WRITE = MMIO_WRITE
Const MMIOM_WRITEFLUSH = 5
Const MMSYSERR_BASE = 0
Const MMSYSERR_ALLOCATED = MMSYSERR_BASE + 4
Const MMSYSERR_BADDEVICEID = MMSYSERR_BASE + 2
Const MMSYSERR_BADERRNUM = MMSYSERR_BASE + 9
Const MMSYSERR_ERROR = MMSYSERR_BASE + 1
Const MMSYSERR_HANDLEBUSY = MMSYSERR_BASE + 12
Const MMSYSERR_INVALFLAG = MMSYSERR_BASE + 10
Const MMSYSERR_INVALHANDLE = MMSYSERR_BASE + 5
Const MMSYSERR_INVALIDALIAS = MMSYSERR_BASE + 13
Const MMSYSERR_INVALPARAM = MMSYSERR_BASE + 11
Const MMSYSERR_LASTERROR = MMSYSERR_BASE + 13
Const MMSYSERR_NODRIVER = MMSYSERR_BASE + 6
Const MMSYSERR_NOERROR = 0
Const MMSYSERR_NOMEM = MMSYSERR_BASE + 7
Const MMSYSERR_NOTENABLED = MMSYSERR_BASE + 3
Const MMSYSERR_NOTSUPPORTED = MMSYSERR_BASE + 8
Const MOD_ALT = 1
Const MOD_CONTROL = 2
Const MOD_FMSYNTH = 4
Const MOD_MAPPER = 5
Const MOD_MIDIPORT = 1
Const MOD_SHIFT = 4
Const MOD_SQSYNTH = 3
Const MOD_SYNTH = 2
Const MOM_CLOSE = MM_MOM_CLOSE
Const MOM_DONE = MM_MOM_DONE
Const MOM_OPEN = MM_MOM_OPEN
Const MOM_POSITIONCB = MM_MOM_POSITIONCB
Const MONO_FONT = 8
Const mouse_eventC = 2
Const MOUSE_MOVED = 1
Const MOUSEEVENTF_ABSOLUTE = 32768
Const MOUSEEVENTF_LEFTDOWN = 2
Const MOUSEEVENTF_LEFTUP = 4
Const MOUSEEVENTF_MIDDLEDOWN = 32
Const MOUSEEVENTF_MIDDLEUP = 64
Const MOUSEEVENTF_MOVE = 1
Const MOUSEEVENTF_RIGHTDOWN = 8
Const MOUSEEVENTF_RIGHTUP = 16
Const MOUSETRAILS = 39
Const MOVEFILE_COPY_ALLOWED = 2
Const MOVEFILE_DELAY_UNTIL_REBOOT = 4
Const MOVEFILE_REPLACE_EXISTING = 1
Const MS_CTS_ON = 16
Const MS_DSR_ON = 32
Const MS_RING_ON = 64
Const MS_RLSD_ON = 128
Const MSGF_DDEMGR = 32769
Const MSGF_DIALOGBOX = 0
Const MSGF_MAINLOOP = 8
Const MSGF_MAX = 8
Const MSGF_MENU = 2
Const MSGF_MESSAGEBOX = 1
Const MSGF_MOVE = 3
Const MSGF_NEXTWINDOW = 6
Const MSGF_SCROLLBAR = 5
Const MSGF_SIZE = 4
Const MSGF_USER = 4096
Const MULTIFILEOPENORD = 1537
Const MWT_IDENTITY = 1
Const MWT_LEFTMULTIPLY = 2
Const MWT_MIN = MWT_IDENTITY
Const MWT_RIGHTMULTIPLY = 3
Const MWT_MAX = MWT_RIGHTMULTIPLY
Const NAME_FLAGS_MASK = 135
Const NCBACTION = 119
Const NCBADDGRNAME = 54
Const NCBADDNAME = 48
Const NCBASTAT = 51
Const NCBCALL = 16
Const NCBCANCEL = 53
Const NCBCHAINSEND = 23
Const NCBCHAINSENDNA = 114
Const NCBDELNAME = 49
Const NCBDGRECV = 33
Const NCBDGRECVBC = 35
Const NCBDGSEND = 32
Const NCBDGSENDBC = 34
Const NCBENUM = 55
Const NCBFINDNAME = 120
Const NCBHANGUP = 18
Const NCBLANSTALERT = 115
Const NCBLISTEN = 17
Const NCBNAMSZ = 16
Const NCBRECV = 21
Const NCBRECVANY = 22
Const NCBRESET = 50
Const NCBSEND = 20
Const NCBSENDNA = 113
Const NCBSSTAT = 52
Const NCBTRACE = 121
Const NCBUNLINK = 112
Const NEWFRAME = 1
Const NEWTRANSPARENT = 3
Const NEXTBAND = 3
Const NI_CHANGECANDIDATELIST = 19
Const NI_CLOSECANDIDATE = 17
Const NI_COMPOSITIONSTR = 21
Const NI_FINALIZECONVERSIONRETURN = 20
Const NI_OPENCANDIDATE = 16
Const NI_SELECTCANDIDATESTR = 18
Const NI_SETCANDIDATE_PAGESIZE = 23
Const NI_SETCANDIDATE_PAGESTART = 22
Const NIF_ICON = 2
Const NIF_MESSAGE = 1
Const NIF_TIP = 4
Const NIM_ADD = 0
Const NIM_DELETE = 2
Const NIM_MODIFY = 1
Const NMPWAIT_NOWAIT = 1
Const NMPWAIT_USE_DEFAULT_WAIT = 0
Const NMPWAIT_WAIT_FOREVER = 65535
Const NO_ERROR = 0
Const NO_PRIORITY = 0
Const NO_PROPAGATE_INHERIT_ACE = 4
Const NOERROR = 0
Const NONZEROLHND = LMEM_MOVEABLE
Const NONZEROLPTR = LMEM_FIXED
Const NOPARITY = 0
Const NORM_IGNORECASE = 1
Const NORM_IGNORENONSPACE = 2
Const NORM_IGNORESYMBOLS = 4
Const NORMAL_PRIORITY_CLASS = 32
Const NOTSRCCOPY = 3342344
Const NOTSRCERASE = 1114278
Const NRC_ACTSES = 15
Const NRC_BADDR = 7
Const NRC_BRIDGE = 35
Const NRC_BUFLEN = 1
Const NRC_CANCEL = 38
Const NRC_CANOCCR = 36
Const NRC_CMDCAN = 11
Const NRC_CMDTMO = 5
Const NRC_DUPENV = 48
Const NRC_DUPNAME = 13
Const NRC_ENVNOTDEF = 52
Const NRC_GOODRET = 0
Const NRC_IFBUSY = 33
Const NRC_ILLCMD = 3
Const NRC_ILLNN = 19
Const NRC_INCOMP = 6
Const NRC_INUSE = 22
Const NRC_INVADDRESS = 57
Const NRC_INVDDID = 59
Const NRC_LOCKFAIL = 60
Const NRC_LOCTFUL = 17
Const NRC_MAXAPPS = 54
Const NRC_NAMCONF = 25
Const NRC_NAMERR = 23
Const NRC_NAMTFUL = 14
Const NRC_NOCALL = 20
Const NRC_NORES = 9
Const NRC_NORESOURCES = 56
Const NRC_NOSAPS = 55
Const NRC_NOWILD = 21
Const NRC_OPENERR = 63
Const NRC_OSRESNOTAV = 53
Const NRC_PENDING = 255
Const NRC_REMTFUL = 18
Const NRC_SABORT = 24
Const NRC_SCLOSED = 10
Const NRC_SNUMOUT = 8
Const NRC_SYSTEM = 64
Const NRC_TOOMANY = 34
Const NTM_BOLD = 32
Const NTM_ITALIC = 1
Const NTM_REGULAR = 64
Const NULL_BRUSH = 5
Const NULL_PEN = 8
Const NULLREGION = 1
Const NUMBRUSHES = 16
Const NUMCOLORS = 24
Const NUMFONTS = 22
Const NUMLOCK_ON = 32
Const NUMMARKERS = 20
Const NUMPENS = 18
Const NUMRESERVED = 106
Const OBJ_BITMAP = 7
Const OBJ_BRUSH = 2
Const OBJ_DC = 3
Const OBJ_ENHMETADC = 12
Const OBJ_ENHMETAFILE = 13
Const OBJ_EXTPEN = 11
Const OBJ_FONT = 6
Const OBJ_MEMDC = 10
Const OBJ_METADC = 4
Const OBJ_METAFILE = 9
Const OBJ_PAL = 5
Const OBJ_PEN = 1
Const OBJ_REGION = 8
Const OBJECT_INHERIT_ACE = 1
Const OBM_BTNCORNERS = 32758
Const OBM_BTSIZE = 32761
Const OBM_CHECK = 32760
Const OBM_CHECKBOXES = 32759
Const OBM_CLOSE = 32754
Const OBM_COMBO = 32738
Const OBM_DNARROW = 32752
Const OBM_DNARROWD = 32742
Const OBM_DNARROWI = 32736
Const OBM_LFARROW = 32750
Const OBM_LFARROWD = 32740
Const OBM_LFARROWI = 32734
Const OBM_MNARROW = 32739
Const OBM_OLD_CLOSE = 32767
Const OBM_OLD_DNARROW = 32764
Const OBM_OLD_LFARROW = 32762
Const OBM_OLD_REDUCE = 32757
Const OBM_OLD_RESTORE = 32755
Const OBM_OLD_RGARROW = 32763
Const OBM_OLD_UPARROW = 32765
Const OBM_OLD_ZOOM = 32756
Const OBM_REDUCE = 32749
Const OBM_REDUCED = 32746
Const OBM_RESTORE = 32747
Const OBM_RESTORED = 32744
Const OBM_RGARROW = 32751
Const OBM_RGARROWD = 32741
Const OBM_RGARROWI = 32735
Const OBM_SIZE = 32766
Const OBM_UPARROW = 32753
Const OBM_UPARROWD = 32743
Const OBM_UPARROWI = 32737
Const OBM_ZOOM = 32748
Const OBM_ZOOMD = 32745
Const OCR_CROSS = 32515
Const OCR_IBEAM = 32513
Const OCR_ICOCUR = 32647
Const OCR_ICON = 32641
Const OCR_NO = 32648
Const OCR_NORMAL = 32512
Const OCR_SIZE = 32640
Const OCR_SIZEALL = 32646
Const OCR_SIZENESW = 32643
Const OCR_SIZENS = 32645
Const OCR_SIZENWSE = 32642
Const OCR_SIZEWE = 32644
Const OCR_UP = 32516
Const OCR_WAIT = 32514
Const ODA_DRAWENTIRE = 1
Const ODA_FOCUS = 4
Const ODA_SELECT = 2
Const ODDPARITY = 1
Const ODS_CHECKED = 8
Const ODS_DISABLED = 4
Const ODS_FOCUS = 16
Const ODS_GRAYED = 2
Const ODS_SELECTED = 1
Const ODT_BUTTON = 4
Const ODT_COMBOBOX = 3
Const ODT_LISTBOX = 2
Const ODT_MENU = 1
Const OEM_CHARSET = 255
Const OEM_FIXED_FONT = 10
Const OF_CANCEL = 2048
Const OF_CREATE = 4096
Const OF_DELETE = 512
Const OF_EXIST = 16384
Const OF_PARSE = 256
Const OF_PROMPT = 8192
Const OF_READ = 0
Const OF_READWRITE = 2
Const OF_REOPEN = 32768
Const OF_SHARE_COMPAT = 0
Const OF_SHARE_DENY_NONE = 64
Const OF_SHARE_DENY_READ = 48
Const OF_SHARE_DENY_WRITE = 32
Const OF_SHARE_EXCLUSIVE = 16
Const OF_VERIFY = 1024
Const OF_WRITE = 1
Const OFN_ALLOWMULTISELECT = 512
Const OFN_CREATEPROMPT = 8192
Const OFN_ENABLEHOOK = 32
Const OFN_ENABLETEMPLATE = 64
Const OFN_ENABLETEMPLATEHANDLE = 128
Const OFN_EXPLORER = 524288
Const OFN_EXTENSIONDIFFERENT = 1024
Const OFN_FILEMUSTEXIST = 4096
Const OFN_HIDEREADONLY = 4
Const OFN_LONGNAMES = 2097152
Const OFN_NOCHANGEDIR = 8
Const OFN_NODEREFERENCELINKS = 1048576
Const OFN_NOLONGNAMES = 262144
Const OFN_NONETWORKBUTTON = 131072
Const OFN_NOREADONLYRETURN = 32768
Const OFN_NOTESTFILECREATE = 65536
Const OFN_NOVALIDATE = 256
Const OFN_OVERWRITEPROMPT = 2
Const OFN_PATHMUSTEXIST = 2048
Const OFN_READONLY = 1
Const OFN_SHAREAWARE = 16384
Const OFN_SHAREFALLTHROUGH = 2
Const OFN_SHARENOWARN = 1
Const OFN_SHAREWARN = 0
Const OFN_SHOWHELP = 16
Const OFS_MAXPATHNAME = 128
Const OIC_BANG = 32515
Const OIC_HAND = 32513
Const OIC_NOTE = 32516
Const OIC_QUES = 32514
Const OIC_SAMPLE = 32512
Const OLE_E_ADVF = 2147745793
Const OLE_E_ADVISENOTSUPPORTED = 2147745795
Const OLE_E_BLANK = 2147745799
Const OLE_E_CANT_BINDTOSOURCE = 2147745802
Const OLE_E_CANT_GETMONIKER = 2147745801
Const OLE_E_CANTCONVERT = 2147745809
Const OLE_E_CLASSDIFF = 2147745800
Const OLE_E_ENUM_NOMORE = 2147745794
Const OLE_E_FIRST = 2147745792
Const OLE_E_INVALIDHWND = 2147745807
Const OLE_E_INVALIDRECT = 2147745805
Const OLE_E_LAST = 2147746047
Const OLE_E_NOCACHE = 2147745798
Const OLE_E_NOCONNECTION = 2147745796
Const OLE_E_NOSTORAGE = 2147745810
Const OLE_E_NOT_INPLACEACTIVE = 2147745808
Const OLE_E_NOTRUNNING = 2147745797
Const OLE_E_OLEVERB = 2147745792
Const OLE_E_PROMPTSAVECANCELLED = 2147745804
Const OLE_E_STATIC = 2147745803
Const OLE_E_WRONGCOMPOBJ = 2147745806
Const OLE_S_FIRST = 262144
Const OLE_S_LAST = 262399
Const OLE_S_MAC_CLIPFORMAT = 262146
Const OLE_S_STATIC = 262145
Const OLE_S_USEREG = 262144
Const OLEOBJ_E_FIRST = 2147746176
Const OLEOBJ_E_INVALIDVERB = 2147746177
Const OLEOBJ_E_LAST = 2147746191
Const OLEOBJ_E_NOVERBS = 2147746176
Const OLEOBJ_S_CANNOT_DOVERB_NOW = 262529
Const OLEOBJ_S_FIRST = 262528
Const OLEOBJ_S_INVALIDHWND = 262530
Const OLEOBJ_S_INVALIDVERB = 262528
Const OLEOBJ_S_LAST = 262543
Const ONE5STOPBITS = 1
Const ONESTOPBIT = 0
Const OPAQUE = 2
Const OPEN_ALWAYS = 4
Const OPEN_EXISTING = 3
Const OPENCHANNEL = 4110
Const ORD_LANGDRIVER = 1
Const OUT_CHARACTER_PRECIS = 2
Const OUT_DEFAULT_PRECIS = 0
Const OUT_DEVICE_PRECIS = 5
Const OUT_OUTLINE_PRECIS = 8
Const OUT_RASTER_PRECIS = 6
Const OUT_STRING_PRECIS = 1
Const OUT_STROKE_PRECIS = 3
Const OUT_TT_ONLY_PRECIS = 7
Const OUT_TT_PRECIS = 4
Const OUTPUT_DEBUG_STRING_EVENT = 8
Const PAN_ANY = 0
Const PAN_ARMSTYLE_INDEX = 6
Const PAN_BENT_ARMS_DOUBLE_SERIF = 11
Const PAN_BENT_ARMS_HORZ = 7
Const PAN_BENT_ARMS_SINGLE_SERIF = 10
Const PAN_BENT_ARMS_VERT = 9
Const PAN_BENT_ARMS_WEDGE = 8
Const PAN_CONTRAST_HIGH = 8
Const PAN_CONTRAST_INDEX = 4
Const PAN_CONTRAST_LOW = 4
Const PAN_CONTRAST_MEDIUM = 6
Const PAN_CONTRAST_MEDIUM_HIGH = 7
Const PAN_CONTRAST_MEDIUM_LOW = 5
Const PAN_CONTRAST_NONE = 2
Const PAN_CONTRAST_VERY_HIGH = 9
Const PAN_CONTRAST_VERY_LOW = 3
Const PAN_CULTURE_LATIN = 0
Const PAN_FAMILY_DECORATIVE = 4
Const PAN_FAMILY_PICTORIAL = 5
Const PAN_FAMILY_SCRIPT = 3
Const PAN_FAMILY_TEXT_DISPLAY = 2
Const PAN_FAMILYTYPE_INDEX = 0
Const PAN_LETT_NORMAL_BOXED = 4
Const PAN_LETT_NORMAL_CONTACT = 2
Const PAN_LETT_NORMAL_FLATTENED = 5
Const PAN_LETT_NORMAL_OFF_CENTER = 7
Const PAN_LETT_NORMAL_ROUNDED = 6
Const PAN_LETT_NORMAL_SQUARE = 8
Const PAN_LETT_NORMAL_WEIGHTED = 3
Const PAN_LETT_OBLIQUE_BOXED = 11
Const PAN_LETT_OBLIQUE_CONTACT = 9
Const PAN_LETT_OBLIQUE_FLATTENED = 12
Const PAN_LETT_OBLIQUE_OFF_CENTER = 14
Const PAN_LETT_OBLIQUE_ROUNDED = 13
Const PAN_LETT_OBLIQUE_SQUARE = 15
Const PAN_LETT_OBLIQUE_WEIGHTED = 10
Const PAN_LETTERFORM_INDEX = 7
Const PAN_MIDLINE_CONSTANT_POINTED = 9
Const PAN_MIDLINE_CONSTANT_SERIFED = 10
Const PAN_MIDLINE_CONSTANT_TRIMMED = 8
Const PAN_MIDLINE_HIGH_POINTED = 6
Const PAN_MIDLINE_HIGH_SERIFED = 7
Const PAN_MIDLINE_HIGH_TRIMMED = 5
Const PAN_MIDLINE_INDEX = 8
Const PAN_MIDLINE_LOW_POINTED = 12
Const PAN_MIDLINE_LOW_SERIFED = 13
Const PAN_MIDLINE_LOW_TRIMMED = 11
Const PAN_MIDLINE_STANDARD_POINTED = 3
Const PAN_MIDLINE_STANDARD_SERIFED = 4
Const PAN_MIDLINE_STANDARD_TRIMMED = 2
Const PAN_NO_FIT = 1
Const PAN_PROP_CONDENSED = 6
Const PAN_PROP_EVEN_WIDTH = 4
Const PAN_PROP_EXPANDED = 5
Const PAN_PROP_MODERN = 3
Const PAN_PROP_MONOSPACED = 9
Const PAN_PROP_OLD_STYLE = 2
Const PAN_PROP_VERY_CONDENSED = 8
Const PAN_PROP_VERY_EXPANDED = 7
Const PAN_PROPORTION_INDEX = 3
Const PAN_SERIF_BONE = 8
Const PAN_SERIF_COVE = 2
Const PAN_SERIF_EXAGGERATED = 9
Const PAN_SERIF_FLARED = 14
Const PAN_SERIF_NORMAL_SANS = 11
Const PAN_SERIF_OBTUSE_COVE = 3
Const PAN_SERIF_OBTUSE_SANS = 12
Const PAN_SERIF_OBTUSE_SQUARE_COVE = 5
Const PAN_SERIF_PERP_SANS = 13
Const PAN_SERIF_ROUNDED = 15
Const PAN_SERIF_SQUARE = 6
Const PAN_SERIF_SQUARE_COVE = 4
Const PAN_SERIF_THIN = 7
Const PAN_SERIF_TRIANGLE = 10
Const PAN_SERIFSTYLE_INDEX = 1
Const PAN_STRAIGHT_ARMS_DOUBLE_SERIF = 6
Const PAN_STRAIGHT_ARMS_HORZ = 2
Const PAN_STRAIGHT_ARMS_SINGLE_SERIF = 5
Const PAN_STRAIGHT_ARMS_VERT = 4
Const PAN_STRAIGHT_ARMS_WEDGE = 3
Const PAN_STROKE_GRADUAL_DIAG = 2
Const PAN_STROKE_GRADUAL_HORZ = 5
Const PAN_STROKE_GRADUAL_TRAN = 3
Const PAN_STROKE_GRADUAL_VERT = 4
Const PAN_STROKE_INSTANT_VERT = 8
Const PAN_STROKE_RAPID_HORZ = 7
Const PAN_STROKE_RAPID_VERT = 6
Const PAN_STROKEVARIATION_INDEX = 5
Const PAN_WEIGHT_BLACK = 10
Const PAN_WEIGHT_BOLD = 8
Const PAN_WEIGHT_BOOK = 5
Const PAN_WEIGHT_DEMI = 7
Const PAN_WEIGHT_HEAVY = 9
Const PAN_WEIGHT_INDEX = 2
Const PAN_WEIGHT_LIGHT = 3
Const PAN_WEIGHT_MEDIUM = 6
Const PAN_WEIGHT_NORD = 11
Const PAN_WEIGHT_THIN = 4
Const PAN_WEIGHT_VERY_LIGHT = 2
Const PAN_XHEIGHT_CONSTANT_LARGE = 4
Const PAN_XHEIGHT_CONSTANT_SMALL = 2
Const PAN_XHEIGHT_CONSTANT_STD = 3
Const PAN_XHEIGHT_DUCKING_LARGE = 7
Const PAN_XHEIGHT_DUCKING_SMALL = 5
Const PAN_XHEIGHT_DUCKING_STD = 6
Const PAN_XHEIGHT_INDEX = 9
Const PANOSE_COUNT = 10
Const PARITY_EVEN = 1024
Const PARITY_MARK = 2048
Const PARITY_NONE = 256
Const PARITY_ODD = 512
Const PARITY_SPACE = 4096
Const PASSTHROUGH = 19
Const PATCOPY = 15728673
Const PATINVERT = 5898313
Const PATPAINT = 16452105
Const PC_EXPLICIT = 2
Const PC_INTERIORS = 128
Const PC_NOCOLLAPSE = 4
Const PC_NONE = 0
Const PC_POLYGON = 1
Const PC_RECTANGLE = 2
Const PC_RESERVED = 1
Const PC_SCANLINE = 8
Const PC_STYLED = 32
Const PC_TRAPEZOID = 4
Const PC_WIDE = 16
Const PC_WIDESTYLED = 64
Const PC_WINDPOLYGON = 4
Const PCF_16BITMODE = 512
Const PCF_DTRDSR = 1
Const PCF_INTTIMEOUTS = 128
Const PCF_PARITY_CHECK = 8
Const PCF_RLSD = 4
Const PCF_RTSCTS = 2
Const PCF_SETXCHAR = 32
Const PCF_SPECIALCHARS = 256
Const PCF_TOTALTIMEOUTS = 64
Const PCF_XONXOFF = 16
Const PD_ALLPAGES = 0
Const PD_COLLATE = 16
Const PD_DISABLEPRINTTOFILE = 524288
Const PD_ENABLEPRINTHOOK = 4096
Const PD_ENABLEPRINTTEMPLATE = 16384
Const PD_ENABLEPRINTTEMPLATEHANDLE = 65536
Const PD_ENABLESETUPHOOK = 8192
Const PD_ENABLESETUPTEMPLATE = 32768
Const PD_ENABLESETUPTEMPLATEHANDLE = 131072
Const PD_HIDEPRINTTOFILE = 1048576
Const PD_NONETWORKBUTTON = 2097152
Const PD_NOPAGENUMS = 8
Const PD_NOSELECTION = 4
Const PD_NOWARNING = 128
Const PD_PAGENUMS = 2
Const PD_PRINTSETUP = 64
Const PD_PRINTTOFILE = 32
Const PD_RETURNDC = 256
Const PD_RETURNDEFAULT = 1024
Const PD_RETURNIC = 512
Const PD_SELECTION = 1
Const PD_SHOWHELP = 2048
Const PD_USEDEVMODECOPIES = 262144
Const PD_USEDEVMODECOPIESANDCOLLATE = 262144
Const PDERR_CREATEICFAILURE = 4106
Const PDERR_DEFAULTDIFFERENT = 4108
Const PDERR_DNDMMISMATCH = 4105
Const PDERR_GETDEVMODEFAIL = 4101
Const PDERR_INITFAILURE = 4102
Const PDERR_LOADDRVFAILURE = 4100
Const PDERR_NODEFAULTPRN = 4104
Const PDERR_NODEVICES = 4103
Const PDERR_PARSEFAILURE = 4098
Const PDERR_PRINTERCODES = 4096
Const PDERR_PRINTERNOTFOUND = 4107
Const PDERR_RETDEFFAILURE = 4099
Const PDERR_SETUPFAILURE = 4097
Const PDEVICESIZE = 26
Const PERF_COUNTER_BASE = 196608
Const PERF_COUNTER_ELAPSED = 262144
Const PERF_COUNTER_FRACTION = 131072
Const PERF_COUNTER_HISTOGRAM = 393216
Const PERF_COUNTER_HISTOGRAM_TYPE = 2147483648
Const PERF_COUNTER_QUEUELEN = 327680
Const PERF_COUNTER_RATE = 65536
Const PERF_COUNTER_VALUE = 0
Const PERF_DATA_REVISION = 1
Const PERF_DATA_VERSION = 1
Const PERF_DELTA_BASE = 8388608
Const PERF_DELTA_COUNTER = 4194304
Const PERF_DETAIL_ADVANCED = 200
Const PERF_DETAIL_EXPERT = 300
Const PERF_DETAIL_NOVICE = 100
Const PERF_DETAIL_WIZARD = 400
Const PERF_DISPLAY_NO_SUFFIX = 0
Const PERF_DISPLAY_NOSHOW = 1073741824
Const PERF_DISPLAY_PER_SEC = 268435456
Const PERF_DISPLAY_PERCENT = 536870912
Const PERF_DISPLAY_SECONDS = 805306368
Const PERF_INVERSE_COUNTER = 16777216
Const PERF_MULTI_COUNTER = 33554432
Const PERF_NO_INSTANCES = -1
Const PERF_NO_UNIQUE_ID = -1
Const PERF_NUMBER_DEC_1000 = 131072
Const PERF_NUMBER_DECIMAL = 65536
Const PERF_NUMBER_HEX = 0
Const PERF_OBJECT_TIMER = 2097152
Const PERF_SIZE_DWORD = 0
Const PERF_SIZE_LARGE = 256
Const PERF_SIZE_VARIABLE_LEN = 768
Const PERF_SIZE_ZERO = 512
Const PERF_TEXT_ASCII = 65536
Const PERF_TEXT_UNICODE = 0
Const PERF_TIMER_100NS = 1048576
Const PERF_TIMER_TICK = 0
Const PERF_TYPE_COUNTER = 1024
Const PERF_TYPE_NUMBER = 0
Const PERF_TYPE_TEXT = 2048
Const PERF_TYPE_ZERO = 3072
Const PHYSICALHEIGHT = 111
Const PHYSICALOFFSETX = 112
Const PHYSICALOFFSETY = 113
Const PHYSICALWIDTH = 110
Const PIPE_ACCESS_DUPLEX = 3
Const PIPE_ACCESS_INBOUND = 1
Const PIPE_ACCESS_OUTBOUND = 2
Const PIPE_CLIENT_END = 0
Const PIPE_NOWAIT = 1
Const PIPE_READMODE_BYTE = 0
Const PIPE_READMODE_MESSAGE = 2
Const PIPE_SERVER_END = 1
Const PIPE_TYPE_BYTE = 0
Const PIPE_TYPE_MESSAGE = 4
Const PIPE_UNLIMITED_INSTANCES = 255
Const PIPE_WAIT = 0
Const PLANES = 14
Const PM_NOREMOVE = 0
Const PM_NOYIELD = 2
Const PM_REMOVE = 1
Const PO_DELETE = 19
Const PO_PORTCHANGE = 32
Const PO_REN_PORT = 52
Const PO_RENAME = 20
Const POLYFILL_LAST = 2
Const POLYGONALCAPS = 32
Const PORT_TYPE_NET_ATTACHED = 8
Const PORT_TYPE_READ = 2
Const PORT_TYPE_REDIRECTED = 4
Const PORT_TYPE_WRITE = 1
Const POSTSCRIPT_DATA = 37
Const POSTSCRIPT_IGNORE = 38
Const POSTSCRIPT_PASSTHROUGH = 4115
Const PR_JOBSTATUS = 0
Const PRINTDLGORD = 1538
Const PRINTER_ACCESS_ADMINISTER = 4
Const PRINTER_ACCESS_USE = 8
Const PRINTER_ATTRIBUTE_DEFAULT = 4
Const PRINTER_ATTRIBUTE_DIRECT = 2
Const PRINTER_ATTRIBUTE_ENABLE_BIDI = 2048
Const PRINTER_ATTRIBUTE_HIDDEN = 32
Const PRINTER_ATTRIBUTE_LOCAL = 64
Const PRINTER_ATTRIBUTE_NETWORK = 16
Const PRINTER_ATTRIBUTE_QUEUED = 1
Const PRINTER_ATTRIBUTE_SHARED = 8
Const PRINTER_ATTRIBUTE_WORK_OFFLINE = 1024
Const PRINTER_CHANGE_ADD_FORM = 65536
Const PRINTER_CHANGE_ADD_JOB = 256
Const PRINTER_CHANGE_ADD_PORT = 1048576
Const PRINTER_CHANGE_ADD_PRINT_PROCESSOR = 16777216
Const PRINTER_CHANGE_ADD_PRINTER = 1
Const PRINTER_CHANGE_ADD_PRINTER_DRIVER = 268435456
Const PRINTER_CHANGE_ALL = 2004353023
Const PRINTER_CHANGE_CONFIGURE_PORT = 2097152
Const PRINTER_CHANGE_DELETE_FORM = 262144
Const PRINTER_CHANGE_DELETE_JOB = 1024
Const PRINTER_CHANGE_DELETE_PORT = 4194304
Const PRINTER_CHANGE_DELETE_PRINT_PROCESSOR = 67108864
Const PRINTER_CHANGE_DELETE_PRINTER = 4
Const PRINTER_CHANGE_DELETE_PRINTER_DRIVER = 1073741824
Const PRINTER_CHANGE_FORM = 458752
Const PRINTER_CHANGE_JOB = 65280
Const PRINTER_CHANGE_PORT = 7340032
Const PRINTER_CHANGE_PRINT_PROCESSOR = 117440512
Const PRINTER_CHANGE_PRINTER = 255
Const PRINTER_CHANGE_PRINTER_DRIVER = 1879048192
Const PRINTER_CHANGE_SET_FORM = 131072
Const PRINTER_CHANGE_SET_JOB = 512
Const PRINTER_CHANGE_SET_PRINTER = 2
Const PRINTER_CHANGE_TIMEOUT = 2147483648
Const PRINTER_CHANGE_WRITE_JOB = 2048
Const PRINTER_CONTROL_PAUSE = 1
Const PRINTER_CONTROL_PURGE = 3
Const PRINTER_CONTROL_RESUME = 2
Const PRINTER_CONTROL_SET_STATUS = 4
Const PRINTER_ENUM_CONNECTIONS = 4
Const PRINTER_ENUM_CONTAINER = 32768
Const PRINTER_ENUM_DEFAULT = 1
Const PRINTER_ENUM_EXPAND = 16384
Const PRINTER_ENUM_FAVORITE = 4
Const PRINTER_ENUM_ICON1 = 65536
Const PRINTER_ENUM_ICON2 = 131072
Const PRINTER_ENUM_ICON3 = 262144
Const PRINTER_ENUM_ICON4 = 524288
Const PRINTER_ENUM_ICON5 = 1048576
Const PRINTER_ENUM_ICON6 = 2097152
Const PRINTER_ENUM_ICON7 = 4194304
Const PRINTER_ENUM_ICON8 = 8388608
Const PRINTER_ENUM_ICONMASK = 16711680
Const PRINTER_ENUM_LOCAL = 2
Const PRINTER_ENUM_NAME = 8
Const PRINTER_ENUM_NETWORK = 64
Const PRINTER_ENUM_REMOTE = 16
Const PRINTER_ENUM_SHARED = 32
Const PRINTER_ERROR_INFORMATION = 2147483648
Const PRINTER_ERROR_JAM = 2
Const PRINTER_ERROR_OUTOFPAPER = 1
Const PRINTER_ERROR_OUTOFTONER = 4
Const PRINTER_ERROR_SEVERE = 536870912
Const PRINTER_ERROR_WARNING = 1073741824
Const PRINTER_FONTTYPE = 16384
Const PRINTER_STATUS_BUSY = 512
Const PRINTER_STATUS_DOOR_OPEN = 4194304
Const PRINTER_STATUS_ERROR = 2
Const PRINTER_STATUS_INITIALIZING = 32768
Const PRINTER_STATUS_IO_ACTIVE = 256
Const PRINTER_STATUS_MANUAL_FEED = 32
Const PRINTER_STATUS_NO_TONER = 262144
Const PRINTER_STATUS_NOT_AVAILABLE = 4096
Const PRINTER_STATUS_OFFLINE = 128
Const PRINTER_STATUS_OUT_OF_MEMORY = 2097152
Const PRINTER_STATUS_OUTPUT_BIN_FULL = 2048
Const PRINTER_STATUS_PAGE_PUNT = 524288
Const PRINTER_STATUS_PAPER_JAM = 8
Const PRINTER_STATUS_PAPER_OUT = 16
Const PRINTER_STATUS_PAPER_PROBLEM = 64
Const PRINTER_STATUS_PAUSED = 1
Const PRINTER_STATUS_PENDING_DELETION = 4
Const PRINTER_STATUS_PRINTING = 1024
Const PRINTER_STATUS_PROCESSING = 16384
Const PRINTER_STATUS_TONER_LOW = 131072
Const PRINTER_STATUS_USER_INTERVENTION = 1048576
Const PRINTER_STATUS_WAITING = 8192
Const PRINTER_STATUS_WARMING_UP = 65536
Const PRIVILEGE_SET_ALL_NECESSARY = 1
Const PRNSETUPDLGORD = 1539
Const PROCESS_HEAP_ENTRY_BUSY = 4
Const PROCESS_HEAP_ENTRY_DDESHARE = 32
Const PROCESS_HEAP_ENTRY_MOVEABLE = 16
Const PROCESS_HEAP_REGION = 1
Const PROCESS_HEAP_UNCOMMITTED_RANGE = 2
Const PROFILE_KERNEL = 536870912
Const PROFILE_SERVER = 1073741824
Const PROFILE_USER = 268435456
Const PROOF_QUALITY = 2
Const PS_ALTERNATE = 8
Const PS_COSMETIC = 0
Const PS_DASH = 1
Const PS_DASHDOT = 3
Const PS_DASHDOTDOT = 4
Const PS_DOT = 2
Const PS_ENDCAP_FLAT = 512
Const PS_ENDCAP_MASK = 3840
Const PS_ENDCAP_ROUND = 0
Const PS_ENDCAP_SQUARE = 256
Const PS_GEOMETRIC = 65536
Const PS_INSIDEFRAME = 6
Const PS_JOIN_BEVEL = 4096
Const PS_JOIN_MASK = 61440
Const PS_JOIN_MITER = 8192
Const PS_JOIN_ROUND = 0
Const PS_NULL = 5
Const PS_SOLID = 0
Const PS_STYLE_MASK = 15
Const PS_TYPE_MASK = 983040
Const PS_USERSTYLE = 7
Const PSD_DEFAULTMINMARGINS = 0
Const PSD_DISABLEMARGINS = 16
Const PSD_DISABLEORIENTATION = 256
Const PSD_DISABLEPAGEPAINTING = 524288
Const PSD_DISABLEPAPER = 512
Const PSD_DISABLEPRINTER = 32
Const PSD_ENABLEPAGEPAINTHOOK = 262144
Const PSD_ENABLEPAGESETUPHOOK = 8192
Const PSD_ENABLEPAGESETUPTEMPLATE = 32768
Const PSD_ENABLEPAGESETUPTEMPLATEHANDLE = 131072
Const PSD_INHUNDREDTHSOFMILLIMETERS = 8
Const PSD_INTHOUSANDTHSOFINCHES = 4
Const PSD_INWININIINTLMEASURE = 0
Const PSD_MARGINS = 2
Const PSD_MINMARGINS = 1
Const PSD_NOWARNING = 128
Const PSD_RETURNDEFAULT = 1024
Const PSD_SHOWHELP = 2048
Const psh1 = 1024
Const psh10 = 1033
Const psh11 = 1034
Const psh12 = 1035
Const psh13 = 1036
Const psh14 = 1037
Const psh15 = 1038
Const psh16 = 1039
Const psh2 = 1025
Const psh3 = 1026
Const psh4 = 1027
Const psh5 = 1028
Const psh6 = 1029
Const psh7 = 1030
Const psh8 = 1031
Const psh9 = 1032
Const pshHelp = psh15
Const PST_FAX = 33
Const PST_LAT = 257
Const PST_NETWORK_BRIDGE = 256
Const PST_PARALLELPORT = 2
Const PST_RS232 = 1
Const PST_RS422 = 3
Const PST_RS423 = 4
Const PST_RS449 = 5
Const PST_SCANNER = 34
Const PST_TCPIP_TELNET = 258
Const PST_UNSPECIFIED = 0
Const PST_X25 = 259
Const PT_BEZIERTO = 4
Const PT_CLOSEFIGURE = 1
Const PT_LINETO = 2
Const PT_MOVETO = 6
Const PURGE_RXABORT = 2
Const PURGE_RXCLEAR = 8
Const PURGE_TXABORT = 1
Const PURGE_TXCLEAR = 4
Const PWR_CRITICALRESUME = 3
Const PWR_FAIL = -1
Const PWR_OK = 1
Const PWR_SUSPENDREQUEST = 1
Const PWR_SUSPENDRESUME = 2
Const QID_SYNC = 65535
Const QS_HOTKEY = 128
Const QS_KEY = 1
Const QS_MOUSEBUTTON = 4
Const QS_MOUSEMOVE = 2
Const QS_PAINT = 32
Const QS_POSTMESSAGE = 8
Const QS_SENDMESSAGE = 64
Const QS_TIMER = 16
Const QUERYESCSUPPORT = 8
Const QUERYROPSUPPORT = 40
Const R2_BLACK = 1
Const R2_COPYPEN = 13
Const R2_LAST = 16
Const R2_MASKNOTPEN = 3
Const R2_MASKPEN = 9
Const R2_MASKPENNOT = 5
Const R2_MERGENOTPEN = 12
Const R2_MERGEPEN = 15
Const R2_MERGEPENNOT = 14
Const R2_NOP = 11
Const R2_NOT = 6
Const R2_NOTCOPYPEN = 4
Const R2_NOTMASKPEN = 8
Const R2_NOTMERGEPEN = 2
Const R2_NOTXORPEN = 10
Const R2_WHITE = 16
Const R2_XORPEN = 7
Const rad1 = 1056
Const rad10 = 1065
Const rad11 = 1066
Const rad12 = 1067
Const rad13 = 1068
Const rad14 = 1069
Const rad15 = 1070
Const rad16 = 1071
Const rad2 = 1057
Const rad3 = 1058
Const rad4 = 1059
Const rad5 = 1060
Const rad6 = 1061
Const rad7 = 1062
Const rad8 = 1063
Const rad9 = 1064
Const RASTER_FONTTYPE = 1
Const RASTERCAPS = 38
Const RC_BANDING = 2
Const RC_BIGFONT = 1024
Const RC_BITBLT = 1
Const RC_BITMAP64 = 8
Const RC_DEVBITS = 32768
Const RC_DI_BITMAP = 128
Const RC_DIBTODEV = 512
Const RC_FLOODFILL = 4096
Const RC_GDI20_OUTPUT = 16
Const RC_GDI20_STATE = 32
Const RC_NONE = 0
Const RC_OP_DX_OUTPUT = 16384
Const RC_PALETTE = 256
Const RC_SAVEBITMAP = 64
Const RC_SCALING = 4
Const RC_STRETCHBLT = 2048
Const RC_STRETCHDIB = 8192
Const rct1 = 1080
Const rct2 = 1081
Const rct3 = 1082
Const rct4 = 1083
Const RDH_RECTANGLES = 1
Const RDW_ALLCHILDREN = 128
Const RDW_ERASE = 4
Const RDW_ERASENOW = 512
Const RDW_FRAME = 1024
Const RDW_INTERNALPAINT = 2
Const RDW_INVALIDATE = 1
Const RDW_NOCHILDREN = 64
Const RDW_NOERASE = 32
Const RDW_NOFRAME = 2048
Const RDW_NOINTERNALPAINT = 16
Const RDW_UPDATENOW = 256
Const RDW_VALIDATE = 8
Const READ_CONTROL = 131072
Const READ_CONTROL = 131072
Const READ_WRITE = 2
Const READAPI = 0
Const REALTIME_PRIORITY_CLASS = 256
Const REFERENCE_BLACK_MAX = 4000
Const REFERENCE_BLACK_MIN = 0
Const REFERENCE_WHITE_MAX = 10000
Const REFERENCE_WHITE_MIN = 6000
Const REG_BINARY = 3
Const REG_CREATED_NEW_KEY = 1
Const REG_DWORD = 4
Const REG_DWORD_BIG_ENDIAN = 5
Const REG_DWORD_LITTLE_ENDIAN = 4
Const REG_EXPAND_SZ = 2
Const REG_FULL_RESOURCE_DESCRIPTOR = 9
Const REG_LINK = 6
Const REG_MULTI_SZ = 7
Const REG_NONE = 0
Const REG_NOTIFY_CHANGE_ATTRIBUTES = 2
Const REG_NOTIFY_CHANGE_LAST_SET = 4
Const REG_NOTIFY_CHANGE_NAME = 1
Const REG_NOTIFY_CHANGE_SECURITY = 8
Const REG_OPENED_EXISTING_KEY = 2
Const REG_OPTION_BACKUP_RESTORE = 4
Const REG_OPTION_CREATE_LINK = 2
Const REG_OPTION_NON_VOLATILE = 0
Const REG_OPTION_RESERVED = 0
Const REG_OPTION_VOLATILE = 1
Const REG_REFRESH_HIVE = 2
Const REG_RESOURCE_LIST = 8
Const REG_RESOURCE_REQUIREMENTS_LIST = 10
Const REG_SZ = 1
Const REG_WHOLE_HIVE_VOLATILE = 1
Const REGDB_E_CLASSNOTREG = 2147746132
Const REGDB_E_FIRST = 2147746128
Const REGDB_E_IIDNOTREG = 2147746133
Const REGDB_E_INVALIDVALUE = 2147746131
Const REGDB_E_KEYMISSING = 2147746130
Const REGDB_E_LAST = 2147746143
Const REGDB_E_READREGDB = 2147746128
Const REGDB_E_WRITEREGDB = 2147746129
Const REGDB_S_FIRST = 262480
Const REGDB_S_LAST = 262495
Const REGISTERED = 4
Const REGISTERING = 0
Const REGULAR_FONTTYPE = 1024
Const RELATIVE = 2
Const REPLACEDLGORD = 1541
Const RESETDEV = 7
Const RESOURCE_CONNECTED = 1
Const RESOURCE_PUBLICNET = 2
Const RESOURCE_REMEMBERED = 3
Const RESOURCEDISPLAYTYPE_DOMAIN = 1
Const RESOURCEDISPLAYTYPE_FILE = 4
Const RESOURCEDISPLAYTYPE_GENERIC = 0
Const RESOURCEDISPLAYTYPE_GROUP = 5
Const RESOURCEDISPLAYTYPE_SERVER = 2
Const RESOURCEDISPLAYTYPE_SHARE = 3
Const RESOURCETYPE_ANY = 0
Const RESOURCETYPE_DISK = 1
Const RESOURCETYPE_PRINT = 2
Const RESOURCETYPE_UNKNOWN = 65535
Const RESOURCEUSAGE_CONNECTABLE = 1
Const RESOURCEUSAGE_CONTAINER = 2
Const RESOURCEUSAGE_RESERVED = 2147483648
Const RESTORE_CTM = 4100
Const RGB_GAMMA_MAX = 65000
Const RGB_GAMMA_MIN = 2500
Const RGN_AND = 1
Const RGN_COPY = 5
Const RGN_DIFF = 4
Const RGN_MAX = RGN_COPY
Const RGN_MIN = RGN_AND
Const RGN_OR = 2
Const RGN_XOR = 3
Const RIGHT_ALT_PRESSED = 1
Const RIGHT_CTRL_PRESSED = 4
Const RIGHTMOST_BUTTON_PRESSED = 2
Const RIP_EVENT = 9
Const RPC_E_ATTEMPTED_MULTITHREAD = 2147549442
Const RPC_E_CALL_CANCELED = 2147549186
Const RPC_E_CALL_REJECTED = 2147549185
Const RPC_E_CANTCALLOUT_AGAIN = 2147549201
Const RPC_E_CANTCALLOUT_INASYNCCALL = 2147549188
Const RPC_E_CANTCALLOUT_INEXTERNALCALL = 2147549189
Const RPC_E_CANTCALLOUT_ININPUTSYNCCALL = 2147549453
Const RPC_E_CANTPOST_INSENDCALL = 2147549187
Const RPC_E_CANTTRANSMIT_CALL = 2147549194
Const RPC_E_CHANGED_MODE = 2147549446
Const RPC_E_CLIENT_CANTMARSHAL_DATA = 2147549195
Const RPC_E_CLIENT_CANTUNMARSHAL_DATA = 2147549196
Const RPC_E_CLIENT_DIED = 2147549192
Const RPC_E_CONNECTION_TERMINATED = 2147549190
Const RPC_E_DISCONNECTED = 2147549448
Const RPC_E_FAULT = 2147549444
Const RPC_E_INVALID_CALLDATA = 2147549452
Const RPC_E_INVALID_DATA = 2147549199
Const RPC_E_INVALID_DATAPACKET = 2147549193
Const RPC_E_INVALID_PARAMETER = 2147549200
Const RPC_E_INVALIDMETHOD = 2147549447
Const RPC_E_NOT_REGISTERED = 2147549443
Const RPC_E_OUT_OF_RESOURCES = 2147549441
Const RPC_E_RETRY = 2147549449
Const RPC_E_SERVER_CANTMARSHAL_DATA = 2147549197
Const RPC_E_SERVER_CANTUNMARSHAL_DATA = 2147549198
Const RPC_E_SERVER_DIED = 2147549191
Const RPC_E_SERVER_DIED_DNE = 2147549202
Const RPC_E_SERVERCALL_REJECTED = 2147549451
Const RPC_E_SERVERCALL_RETRYLATER = 2147549450
Const RPC_E_SERVERFAULT = 2147549445
Const RPC_E_SYS_CALL_FAILED = 2147549440
Const RPC_E_THREAD_NOT_INIT = 2147549455
Const RPC_E_UNEXPECTED = 2147614719
Const RPC_E_WRONG_THREAD = 2147549454
Const RPC_S_ADDRESS_ERROR = 1768
Const RPC_S_ALREADY_LISTENING = 1713
Const RPC_S_ALREADY_REGISTERED = 1711
Const RPC_S_BINDING_HAS_NO_AUTH = 1746
Const RPC_S_CALL_FAILED = 1726
Const RPC_S_CALL_FAILED_DNE = 1727
Const RPC_S_CALL_IN_PROGRESS = 1791
Const RPC_S_CANNOT_SUPPORT = 1764
Const RPC_S_CANT_CREATE_ENDPOINT = 1720
Const RPC_S_DUPLICATE_ENDPOINT = 1740
Const RPC_S_ENTRY_ALREADY_EXISTS = 1760
Const RPC_S_ENTRY_NOT_FOUND = 1761
Const RPC_S_FP_DIV_ZERO = 1769
Const RPC_S_FP_OVERFLOW = 1771
Const RPC_S_FP_UNDERFLOW = 1770
Const RPC_S_GROUP_MEMBER_NOT_FOUND = 1898
Const RPC_S_INCOMPLETE_NAME = 1755
Const RPC_S_INTERFACE_NOT_FOUND = 1759
Const RPC_S_INTERNAL_ERROR = 1766
Const RPC_S_INVALID_AUTH_IDENTITY = 1749
Const RPC_S_INVALID_BINDING = 1702
Const RPC_S_INVALID_BOUND = 1734
Const RPC_S_INVALID_ENDPOINT_FORMAT = 1706
Const RPC_S_INVALID_NAF_ID = 1763
Const RPC_S_INVALID_NAME_SYNTAX = 1736
Const RPC_S_INVALID_NET_ADDR = 1707
Const RPC_S_INVALID_NETWORK_OPTIONS = 1724
Const RPC_S_INVALID_OBJECT = 1900
Const RPC_S_INVALID_RPC_PROTSEQ = 1704
Const RPC_S_INVALID_STRING_BINDING = 1700
Const RPC_S_INVALID_STRING_UUID = 1705
Const RPC_S_INVALID_TAG = 1733
Const RPC_S_INVALID_TIMEOUT = 1709
Const RPC_S_INVALID_VERS_OPTION = 1756
Const RPC_S_MAX_CALLS_TOO_SMALL = 1742
Const RPC_S_NAME_SERVICE_UNAVAILABLE = 1762
Const RPC_S_NO_BINDINGS = 1718
Const RPC_S_NO_CALL_ACTIVE = 1725
Const RPC_S_NO_CONTEXT_AVAILABLE = 1765
Const RPC_S_NO_ENDPOINT_FOUND = 1708
Const RPC_S_NO_ENTRY_NAME = 1735
Const RPC_S_NO_MORE_BINDINGS = 1806
Const RPC_S_NO_MORE_MEMBERS = 1757
Const RPC_S_NO_PROTSEQS = 1719
Const RPC_S_NO_PROTSEQS_REGISTERED = 1714
Const RPC_S_NOT_ALL_OBJS_UNEXPORTED = 1758
Const RPC_S_NOT_LISTENING = 1715
Const RPC_S_NOTHING_TO_EXPORT = 1754
Const RPC_S_OBJECT_NOT_FOUND = 1710
Const RPC_S_OUT_OF_RESOURCES = 1721
Const RPC_S_PROCNUM_OUT_OF_RANGE = 1745
Const RPC_S_PROTOCOL_ERROR = 1728
Const RPC_S_PROTSEQ_NOT_FOUND = 1744
Const RPC_S_PROTSEQ_NOT_SUPPORTED = 1703
Const RPC_S_SERVER_TOO_BUSY = 1723
Const RPC_S_SERVER_UNAVAILABLE = 1722
Const RPC_S_STRING_TOO_LONG = 1743
Const RPC_S_TYPE_ALREADY_REGISTERED = 1712
Const RPC_S_UNKNOWN_AUTHN_LEVEL = 1748
Const RPC_S_UNKNOWN_AUTHN_SERVICE = 1747
Const RPC_S_UNKNOWN_AUTHN_TYPE = 1741
Const RPC_S_UNKNOWN_AUTHZ_SERVICE = 1750
Const RPC_S_UNKNOWN_IF = 1717
Const RPC_S_UNKNOWN_MGR_TYPE = 1716
Const RPC_S_UNSUPPORTED_NAME_SYNTAX = 1737
Const RPC_S_UNSUPPORTED_TRANS_SYN = 1730
Const RPC_S_UNSUPPORTED_TYPE = 1732
Const RPC_S_UUID_NO_ADDRESS = 1739
Const RPC_S_WRONG_KIND_OF_BINDING = 1701
Const RPC_S_ZERO_DIVIDE = 1767
Const RPC_X_BAD_STUB_DATA = 1783
Const RPC_X_BYTE_COUNT_TOO_SMALL = 1782
Const RPC_X_ENUM_VALUE_OUT_OF_RANGE = 1781
Const RPC_X_NO_MORE_ENTRIES = 1772
Const RPC_X_NULL_REF_POINTER = 1780
Const RPC_X_SS_CANNOT_GET_CALL_HANDLE = 1779
Const RPC_X_SS_CHAR_TRANS_OPEN_FAIL = 1773
Const RPC_X_SS_CHAR_TRANS_SHORT_FILE = 1774
Const RPC_X_SS_CONTEXT_DAMAGED = 1777
Const RPC_X_SS_HANDLES_MISMATCH = 1778
Const RPC_X_SS_IN_NULL_CONTEXT = 1775
Const RT_ACCELERATOR = 9
Const RT_BITMAP = 2
Const RT_CURSOR = 1
Const RT_DIALOG = 5
Const RT_FONT = 8
Const RT_FONTDIR = 7
Const RT_ICON = 3
Const RT_MENU = 4
Const RT_RCDATA = 10
Const RT_STRING = 6
Const RTS_CONTROL_DISABLE = 0
Const RTS_CONTROL_ENABLE = 1
Const RTS_CONTROL_HANDSHAKE = 2
Const RTS_CONTROL_TOGGLE = 3
Const RUSSIAN_CHARSET = 204
Const S_ALLTHRESHOLD = 2
Const S_FALSE = 1
Const S_LEGATO = 1
Const S_NORMAL = 0
Const S_OK = 0
Const S_PERIOD1024 = 1
Const S_PERIOD2048 = 2
Const S_PERIOD512 = 0
Const S_PERIODVOICE = 3
Const S_QUEUEEMPTY = 0
Const S_SERBDNT = -5
Const S_SERDCC = -7
Const S_SERDDR = -14
Const S_SERDFQ = -13
Const S_SERDLN = -6
Const S_SERDMD = -10
Const S_SERDPT = -12
Const S_SERDSH = -11
Const S_SERDSR = -15
Const S_SERDST = -16
Const S_SERDTP = -8
Const S_SERDVL = -9
Const S_SERDVNA = -1
Const S_SERMACT = -3
Const S_SEROFM = -2
Const S_SERQFUL = -4
Const S_STACCATO = 2
Const S_THRESHOLD = 1
Const S_WHITE1024 = 5
Const S_WHITE2048 = 6
Const S_WHITE512 = 4
Const S_WHITEVOICE = 7
Const SAVE_CTM = 4101
Const SB_BOTH = 3
Const SB_BOTTOM = 7
Const SB_CTL = 2
Const SB_ENDSCROLL = 8
Const SB_HORZ = 0
Const SB_LEFT = 6
Const SB_LINEDOWN = 1
Const SB_LINELEFT = 0
Const SB_LINERIGHT = 1
Const SB_LINEUP = 0
Const SB_PAGEDOWN = 3
Const SB_PAGELEFT = 2
Const SB_PAGERIGHT = 3
Const SB_PAGEUP = 2
Const SB_RIGHT = 7
Const SB_THUMBPOSITION = 4
Const SB_THUMBTRACK = 5
Const SB_TOP = 6
Const SB_VERT = 1
Const SBM_ENABLE_ARROWS = 228
Const SBM_GETPOS = 225
Const SBM_GETRANGE = 227
Const SBM_SETPOS = 224
Const SBM_SETRANGE = 226
Const SBM_SETRANGEREDRAW = 230
Const SBS_BOTTOMALIGN = 4
Const SBS_HORZ = 0
Const SBS_LEFTALIGN = 2
Const SBS_RIGHTALIGN = 4
Const SBS_SIZEBOX = 8
Const SBS_SIZEBOXBOTTOMRIGHTALIGN = 4
Const SBS_SIZEBOXTOPLEFTALIGN = 2
Const SBS_TOPALIGN = 2
Const SBS_VERT = 1
Const SC_ARRANGE = 61712
Const SC_CLOSE = 61536
Const SC_HOTKEY = 61776
Const SC_HSCROLL = 61568
Const SC_KEYMENU = 61696
Const SC_MANAGER_CONNECT = 1
Const SC_MANAGER_CREATE_SERVICE = 2
Const SC_MANAGER_ENUMERATE_SERVICE = 4
Const SC_MANAGER_LOCK = 8
Const SC_MANAGER_MODIFY_BOOT_CONFIG = 32
Const SC_MANAGER_QUERY_LOCK_STATUS = 16
Const SC_MAXIMIZE = 61488
Const SC_MINIMIZE = 61472
Const SC_MOUSEMENU = 61584
Const SC_MOVE = 61456
Const SC_NEXTWINDOW = 61504
Const SC_PREVWINDOW = 61520
Const SC_RESTORE = 61728
Const SC_SCREENSAVE = 61760
Const SC_SIZE = 61440
Const SC_TASKLIST = 61744
Const SC_VSCROLL = 61552
Const SC_ZOOM = SC_MAXIMIZE
Const SCALINGFACTORX = 114
Const SCALINGFACTORY = 115
Const scr1 = 1168
Const scr2 = 1169
Const scr3 = 1170
Const scr4 = 1171
Const scr5 = 1172
Const scr6 = 1173
Const scr7 = 1174
Const scr8 = 1175
Const SCREEN_FONTTYPE = 8192
Const SCROLLLOCK_ON = 64
Const SCS_32BIT_BINARY = 0
Const SCS_CAP_COMPSTR = 1
Const SCS_CAP_MAKEREAD = 2
Const SCS_DOS_BINARY = 1
Const SCS_OS216_BINARY = 5
Const SCS_PIF_BINARY = 3
Const SCS_POSIX_BINARY = 4
Const SCS_WOW_BINARY = 2
Const SE_DACL_DEFAULTED = 8
Const SE_DACL_PRESENT = 4
Const SE_ERR_ACCESSDENIED = 5
Const SE_ERR_ASSOCINCOMPLETE = 27
Const SE_ERR_DDEBUSY = 30
Const SE_ERR_DDEFAIL = 29
Const SE_ERR_DDETIMEOUT = 28
Const SE_ERR_DLLNOTFOUND = 32
Const SE_ERR_FNF = 2
Const SE_ERR_NOASSOC = 31
Const SE_ERR_OOM = 8
Const SE_ERR_PNF = 3
Const SE_ERR_SHARE = 26
Const SE_GROUP_DEFAULTED = 2
Const SE_GROUP_ENABLED = 4
Const SE_GROUP_ENABLED_BY_DEFAULT = 2
Const SE_GROUP_LOGON_ID = 3221225472
Const SE_GROUP_MANDATORY = 1
Const SE_GROUP_OWNER = 8
Const SE_OWNER_DEFAULTED = 1
Const SE_PRIVILEGE_ENABLED = 2
Const SE_PRIVILEGE_ENABLED_BY_DEFAULT = 1
Const SE_PRIVILEGE_USED_FOR_ACCESS = 2147483648
Const SE_SACL_DEFAULTED = 32
Const SE_SACL_PRESENT = 16
Const SE_SELF_RELATIVE = 32768
Const SECTION_EXTEND_SIZE = 16
Const SECTION_MAP_EXECUTE = 8
Const SECTION_MAP_READ = 4
Const SECTION_MAP_WRITE = 2
Const SECTION_QUERY = 1
Const SECURITY_ANONYMOUS_LOGON_RID = 7
Const SECURITY_BATCH_RID = 3
Const SECURITY_BUILTIN_DOMAIN_RID = 32
Const SECURITY_CONTEXT_TRACKING = 262144
Const SECURITY_CREATOR_GROUP_RID = 1
Const SECURITY_CREATOR_OWNER_RID = 0
Const SECURITY_DESCRIPTOR_MIN_LENGTH = 20
Const SECURITY_DESCRIPTOR_REVISION = 1
Const SECURITY_DESCRIPTOR_REVISION1 = 1
Const SECURITY_DIALUP_RID = 1
Const SECURITY_EFFECTIVE_ONLY = 524288
Const SECURITY_INTERACTIVE_RID = 4
Const SECURITY_LOCAL_RID = 0
Const SECURITY_LOCAL_SYSTEM_RID = 18
Const SECURITY_LOGON_IDS_RID = 5
Const SECURITY_NETWORK_RID = 2
Const SECURITY_NT_NON_UNIQUE = 21
Const SECURITY_NULL_RID = 0
Const SECURITY_SERVICE_RID = 6
Const SECURITY_SQOS_PRESENT = 1048576
Const SECURITY_VALID_SQOS_FLAGS = 2031616
Const SECURITY_WORLD_RID = 0
Const SEE_MASK_CLASSKEY = 3
Const SEE_MASK_CLASSNAME = 1
Const SEE_MASK_CONNECTNETDRV = 128
Const SEE_MASK_DOENVSUBST = 512
Const SEE_MASK_FLAG_DDEWAIT = 256
Const SEE_MASK_FLAG_NO_UI = 1024
Const SEE_MASK_HOTKEY = 32
Const SEE_MASK_ICON = 16
Const SEE_MASK_IDLIST = 4
Const SEE_MASK_INVOKEIDLIST = 12
Const SEE_MASK_NOCLOSEPROCESS = 64
Const SEEK_CUR = 1
Const SEEK_END = 2
Const SEEK_SET = 0
Const SELECT_CAP_CONVERSION = 1
Const SELECT_CAP_SENTENCE = 2
Const SELECTDIB = 41
Const SELECTPAPERSOURCE = 18
Const SEM_FAILCRITICALERRORS = 1
Const SEM_NOGPFAULTERRORBOX = 2
Const SEM_NOOPENFILEERRORBOX = 32768
Const SERVER_ACCESS_ADMINISTER = 1
Const SERVER_ACCESS_ENUMERATE = 2
Const SERVICE_ACCEPT_PAUSE_CONTINUE = 2
Const SERVICE_ACCEPT_SHUTDOWN = 4
Const SERVICE_ACCEPT_STOP = 1
Const SERVICE_ACTIVE = 1
Const SERVICE_CHANGE_CONFIG = 2
Const SERVICE_CONTINUE_PENDING = 5
Const SERVICE_CONTROL_CONTINUE = 3
Const SERVICE_CONTROL_INTERROGATE = 4
Const SERVICE_CONTROL_PAUSE = 2
Const SERVICE_CONTROL_SHUTDOWN = 5
Const SERVICE_CONTROL_STOP = 1
Const SERVICE_ENUMERATE_DEPENDENTS = 8
Const SERVICE_INACTIVE = 2
Const SERVICE_INTERROGATE = 128
Const SERVICE_NO_CHANGE = 65535
Const SERVICE_PAUSE_CONTINUE = 64
Const SERVICE_PAUSE_PENDING = 6
Const SERVICE_PAUSED = 7
Const SERVICE_QUERY_CONFIG = 1
Const SERVICE_QUERY_STATUS = 4
Const SERVICE_RUNNING = 4
Const SERVICE_START = 16
Const SERVICE_START_PENDING = 2
Const SERVICE_STATE_ALL = SERVICE_ACTIVE + SERVICE_INACTIVE
Const SERVICE_STOP = 32
Const SERVICE_STOP_PENDING = 3
Const SERVICE_STOPPED = 1
Const SERVICE_USER_DEFINED_CONTROL = 256
Const SESSION_ABORTED = 6
Const SESSION_ESTABLISHED = 3
Const SET_ARC_DIRECTION = 4102
Const SET_BACKGROUND_COLOR = 4103
Const SET_BOUNDS = 4109
Const SET_CLIP_BOX = 4108
Const SET_MIRROR_MODE = 4110
Const SET_POLY_MODE = 4104
Const SET_SCREEN_ANGLE = 4105
Const SET_SPREAD = 4106
Const SET_TAPE_DRIVE_INFORMATION = 1
Const SET_TAPE_MEDIA_INFORMATION = 0
Const SETABORTPROC = 9
Const SETALLJUSTVALUES = 771
Const SETBREAK = 8
Const SETCHARSET = 772
Const SETCOLORTABLE = 4
Const SETCOPYCOUNT = 17
Const SETDIBSCALING = 32
Const SETDTR = 5
Const SETKERNTRACK = 770
Const SETLINECAP = 21
Const SETLINEJOIN = 22
Const SetMiterLimitC = 23
Const SETRTS = 3
Const SETXOFF = 1
Const SETXON = 2
Const SEVERITY_ERROR = 1
Const SEVERITY_SUCCESS = 0
Const SHGFI_ATTRIBUTES = 2048
Const SHGFI_DISPLAYNAME = 512
Const SHGFI_EXETYPE = 8192
Const SHGFI_ICON = 256
Const SHGFI_ICONLOCATION = 4096
Const SHGFI_LARGEICON = 0
Const SHGFI_LINKOVERLAY = 32768
Const SHGFI_OPENICON = 2
Const SHGFI_PIDL = 8
Const SHGFI_SELECTED = 65536
Const SHGFI_SHELLICONSIZE = 4
Const SHGFI_SMALLICON = 1
Const SHGFI_SYSICONINDEX = 16384
Const SHGFI_TYPENAME = 1024
Const SHGFI_USEFILEATTRIBUTES = 16
Const SHGNLI_PIDL = 1
Const SHGNLI_PREFIXNAME = 2
Const SHIFT_PRESSED = 16
Const SHIFTJIS_CHARSET = 128
Const SHOW_FULLSCREEN = 3
Const SHOW_ICONWINDOW = 2
Const SHOW_OPENNOACTIVATE = 4
Const SHOW_OPENWINDOW = 1
Const SHUTDOWN_NORETRY = 1
Const SID_MAX_SUB_AUTHORITIES = 15
Const SID_RECOMMENDED_SUB_AUTHORITIES = 1
Const SID_REVISION = 1
Const SidTypeAlias = 4
Const SidTypeDeletedAccount = 6
Const SidTypeDomain = 3
Const SidTypeGroup = 2
Const SidTypeInvalid = 7
Const SidTypeUnknown = 8
Const SidTypeUser = 1
Const SidTypeWellKnownGroup = 5
Const SIMPLEREGION = 2
Const SIMULATED_FONTTYPE = 32768
Const SIZE_MAXHIDE = 4
Const SIZE_MAXIMIZED = 2
Const SIZE_MAXSHOW = 3
Const SIZE_MINIMIZED = 1
Const SIZE_RESTORED = 0
Const SIZEFULLSCREEN = SIZE_MAXIMIZED
Const SIZEICONIC = SIZE_MINIMIZED
Const SIZENORMAL = SIZE_RESTORED
Const SIZEPALETTE = 104
Const SIZEZOOMHIDE = SIZE_MAXHIDE
Const SIZEZOOMSHOW = SIZE_MAXSHOW
Const SLE_ERROR = 1
Const SLE_MINORERROR = 2
Const SLE_WARNING = 3
Const SM_CMETRICS = 44
Const SM_CMOUSEBUTTONS = 43
Const SM_CXBORDER = 5
Const SM_CXCURSOR = 13
Const SM_CXDLGFRAME = 7
Const SM_CXDOUBLECLK = 36
Const SM_CXFRAME = 32
Const SM_CXFULLSCREEN = 16
Const SM_CXHSCROLL = 21
Const SM_CXHTHUMB = 10
Const SM_CXICON = 11
Const SM_CXICONSPACING = 38
Const SM_CXMIN = 28
Const SM_CXMINTRACK = 34
Const SM_CXSCREEN = 0
Const SM_CXSIZE = 30
Const SM_CXVSCROLL = 2
Const SM_CYBORDER = 6
Const SM_CYCAPTION = 4
Const SM_CYCURSOR = 14
Const SM_CYDLGFRAME = 8
Const SM_CYDOUBLECLK = 37
Const SM_CYFRAME = 33
Const SM_CYFULLSCREEN = 17
Const SM_CYHSCROLL = 3
Const SM_CYICON = 12
Const SM_CYICONSPACING = 39
Const SM_CYKANJIWINDOW = 18
Const SM_CYMENU = 15
Const SM_CYMIN = 29
Const SM_CYMINTRACK = 35
Const SM_CYSCREEN = 1
Const SM_CYSIZE = 31
Const SM_CYVSCROLL = 20
Const SM_CYVTHUMB = 9
Const SM_DBCSENABLED = 42
Const SM_DEBUG = 22
Const SM_MENUDROPALIGNMENT = 40
Const SM_MOUSEPRESENT = 19
Const SM_PENWINDOWS = 41
Const SM_RESERVED1 = 24
Const SM_RESERVED2 = 25
Const SM_RESERVED3 = 26
Const SM_RESERVED4 = 27
Const SM_SWAPBUTTON = 23
Const SMTO_ABORTIFHUNG = 2
Const SMTO_BLOCK = 1
Const SMTO_NORMAL = 0
Const SND_ALIAS = 65536
Const SND_ALIAS_ID = 1114112
Const SND_ALIAS_START = 0
Const SND_APPLICATION = 128
Const SND_ASYNC = 1
Const SND_FILENAME = 131072
Const SND_LOOP = 8
Const SND_MEMORY = 4
Const SND_NODEFAULT = 2
Const SND_NOSTOP = 16
Const SND_NOWAIT = 8192
Const SND_PURGE = 64
Const SND_RESERVED = 4278190080
Const SND_RESOURCE = 262148
Const SND_SYNC = 0
Const SND_TYPE_MASK = 1507335
Const SND_VALID = 31
Const SND_VALIDFLAGS = 1515551
Const SOFTKEYBOARD_TYPE_C1 = 2
Const SOFTKEYBOARD_TYPE_T1 = 1
Const SORT_CHINESE_BIG5 = 0
Const SORT_CHINESE_UNICODE = 1
Const SORT_DEFAULT = 0
Const SORT_JAPANESE_UNICODE = 1
Const SORT_JAPANESE_XJIS = 0
Const SORT_KOREAN_KSC = 0
Const SORT_KOREAN_UNICODE = 1
Const SORT_STRINGSORT = 4096
Const SP_APPABORT = -2
Const SP_BAUD = 2
Const SP_DATABITS = 4
Const SP_ERROR = -1
Const SP_HANDSHAKING = 16
Const SP_NOTREPORTED = 16384
Const SP_OUTOFDISK = -4
Const SP_OUTOFMEMORY = -5
Const SP_PARITY = 1
Const SP_PARITY_CHECK = 32
Const SP_RLSD = 64
Const SP_SERIALCOMM = 1
Const SP_STOPBITS = 8
Const SP_USERABORT = -3
Const SPACEPARITY = 4
Const SPECIFIC_RIGHTS_ALL = 65535
Const SPI_GETACCESSTIMEOUT = 60
Const SPI_GETANIMATION = 72
Const SPI_GETBEEP = 1
Const SPI_GETBORDER = 5
Const SPI_GETDEFAULTINPUTLANG = 89
Const SPI_GETDRAGFULLWINDOWS = 38
Const SPI_GETFASTTASKSWITCH = 35
Const SPI_GETFILTERKEYS = 50
Const SPI_GETFONTSMOOTHING = 74
Const SPI_GETGRIDGRANULARITY = 18
Const SPI_GETHIGHCONTRAST = 66
Const SPI_GETICONMETRICS = 45
Const SPI_GETICONTITLELOGFONT = 31
Const SPI_GETICONTITLEWRAP = 25
Const SPI_GETKEYBOARDDELAY = 22
Const SPI_GETKEYBOARDPREF = 68
Const SPI_GETKEYBOARDSPEED = 10
Const SPI_GETLOWPOWERACTIVE = 83
Const SPI_GETLOWPOWERTIMEOUT = 79
Const SPI_GETMENUDROPALIGNMENT = 27
Const SPI_GETMINIMIZEDMETRICS = 43
Const SPI_GETMOUSE = 3
Const SPI_GETMOUSEKEYS = 54
Const SPI_GETMOUSETRAILS = 94
Const SPI_GETNONCLIENTMETRICS = 41
Const SPI_GETPOWEROFFACTIVE = 84
Const SPI_GETPOWEROFFTIMEOUT = 80
Const SPI_GETSCREENREADER = 70
Const SPI_GETSCREENSAVEACTIVE = 16
Const SPI_GETSCREENSAVETIMEOUT = 14
Const SPI_GETSERIALKEYS = 62
Const SPI_GETSHOWSOUNDS = 56
Const SPI_GETSOUNDSENTRY = 64
Const SPI_GETSTICKYKEYS = 58
Const SPI_GETTOGGLEKEYS = 52
Const SPI_GETWINDOWSEXTENSION = 92
Const SPI_GETWORKAREA = 48
Const SPI_ICONHORIZONTALSPACING = 13
Const SPI_ICONVERTICALSPACING = 24
Const SPI_LANGDRIVER = 12
Const SPI_SCREENSAVERRUNNING = 97
Const SPI_SETACCESSTIMEOUT = 61
Const SPI_SETANIMATION = 73
Const SPI_SETBEEP = 2
Const SPI_SETBORDER = 6
Const SPI_SETCURSORS = 87
Const SPI_SETDEFAULTINPUTLANG = 90
Const SPI_SETDESKPATTERN = 21
Const SPI_SETDESKWALLPAPER = 20
Const SPI_SETDOUBLECLICKTIME = 32
Const SPI_SETDOUBLECLKHEIGHT = 30
Const SPI_SETDOUBLECLKWIDTH = 29
Const SPI_SETDRAGFULLWINDOWS = 37
Const SPI_SETDRAGHEIGHT = 77
Const SPI_SETDRAGWIDTH = 76
Const SPI_SETFASTTASKSWITCH = 36
Const SPI_SETFILTERKEYS = 51
Const SPI_SETFONTSMOOTHING = 75
Const SPI_SETGRIDGRANULARITY = 19
Const SPI_SETHANDHELD = 78
Const SPI_SETHIGHCONTRAST = 67
Const SPI_SETICONMETRICS = 46
Const SPI_SETICONS = 88
Const SPI_SETICONTITLELOGFONT = 34
Const SPI_SETICONTITLEWRAP = 26
Const SPI_SETKEYBOARDDELAY = 23
Const SPI_SETKEYBOARDPREF = 69
Const SPI_SETKEYBOARDSPEED = 11
Const SPI_SETLANGTOGGLE = 91
Const SPI_SETLOWPOWERACTIVE = 85
Const SPI_SETLOWPOWERTIMEOUT = 81
Const SPI_SETMENUDROPALIGNMENT = 28
Const SPI_SETMINIMIZEDMETRICS = 44
Const SPI_SETMOUSE = 4
Const SPI_SETMOUSEBUTTONSWAP = 33
Const SPI_SETMOUSEKEYS = 55
Const SPI_SETMOUSETRAILS = 93
Const SPI_SETNONCLIENTMETRICS = 42
Const SPI_SETPENWINDOWS = 49
Const SPI_SETPOWEROFFACTIVE = 86
Const SPI_SETPOWEROFFTIMEOUT = 82
Const SPI_SETSCREENREADER = 71
Const SPI_SETSCREENSAVEACTIVE = 17
Const SPI_SETSCREENSAVETIMEOUT = 15
Const SPI_SETSERIALKEYS = 63
Const SPI_SETSHOWSOUNDS = 57
Const SPI_SETSOUNDSENTRY = 65
Const SPI_SETSTICKYKEYS = 59
Const SPI_SETTOGGLEKEYS = 53
Const SPI_SETWORKAREA = 47
Const SPIF_SENDWININICHANGE = 2
Const SPIF_UPDATEINIFILE = 1
Const SRCAND = 8913094
Const SRCCOPY = 13369376
Const SRCERASE = 4457256
Const SRCINVERT = 6684742
Const SRCPAINT = 15597702
Const SS_BLACKFRAME = 7
Const SS_BLACKRECT = 4
Const SS_CENTER = 1
Const SS_GRAYFRAME = 8
Const SS_GRAYRECT = 5
Const SS_ICON = 3
Const SS_LEFT = 0
Const SS_LEFTNOWORDWRAP = 12
Const SS_NOPREFIX = 128
Const SS_RIGHT = 2
Const SS_SIMPLE = 11
Const SS_USERITEM = 10
Const SS_WHITEFRAME = 9
Const SS_WHITERECT = 6
Const ST_ADVISE = 2
Const ST_BEGINSWP = 0
Const ST_BLOCKED = 8
Const ST_BLOCKNEXT = 128
Const ST_CLIENT = 16
Const ST_CONNECTED = 1
Const ST_ENDSWP = 1
Const ST_INLIST = 64
Const ST_ISLOCAL = 4
Const ST_ISSELF = 256
Const ST_TERMINATED = 32
Const STANDARD_RIGHTS_ALL = 2031616
Const STANDARD_RIGHTS_EXECUTE = READ_CONTROL
Const STANDARD_RIGHTS_READ = READ_CONTROL
Const STANDARD_RIGHTS_REQUIRED = 983040
Const STANDARD_RIGHTS_WRITE = READ_CONTROL
Const StartDocC = 10
Const STARTF_FORCEOFFFEEDBACK = 128
Const STARTF_FORCEONFEEDBACK = 64
Const STARTF_RUNFULLSCREEN = 32
Const STARTF_USECOUNTCHARS = 8
Const STARTF_USEFILLATTRIBUTE = 16
Const STARTF_USEPOSITION = 4
Const STARTF_USESHOWWINDOW = 1
Const STARTF_USESIZE = 2
Const STARTF_USESTDHANDLES = 256
Const stc1 = 1088
Const stc10 = 1097
Const stc11 = 1098
Const stc12 = 1099
Const stc13 = 1100
Const stc14 = 1101
Const stc15 = 1102
Const stc16 = 1103
Const stc17 = 1104
Const stc18 = 1105
Const stc19 = 1106
Const stc2 = 1089
Const stc20 = 1107
Const stc21 = 1108
Const stc22 = 1109
Const stc23 = 1110
Const stc24 = 1111
Const stc25 = 1112
Const stc26 = 1113
Const stc27 = 1114
Const stc28 = 1115
Const stc29 = 1116
Const stc3 = 1090
Const stc30 = 1117
Const stc31 = 1118
Const stc32 = 1119
Const stc4 = 1091
Const stc5 = 1092
Const stc6 = 1093
Const stc7 = 1094
Const stc8 = 1095
Const stc9 = 1096
Const STD_ERROR_HANDLE = -12
Const STD_INPUT_HANDLE = -10
Const STD_OUTPUT_HANDLE = -11
Const STG_E_ABNORMALAPIEXIT = 2147680506
Const STG_E_ACCESSDENIED = 2147680261
Const STG_E_CANTSAVE = 2147680515
Const STG_E_DISKISWRITEPROTECTED = 2147680275
Const STG_E_EXTANTMARSHALLINGS = 2147680520
Const STG_E_FILEALREADYEXISTS = 2147680336
Const STG_E_FILENOTFOUND = 2147680258
Const STG_E_INSUFFICIENTMEMORY = 2147680264
Const STG_E_INUSE = 2147680512
Const STG_E_INVALIDFLAG = 2147680511
Const STG_E_INVALIDFUNCTION = 2147680257
Const STG_E_INVALIDHANDLE = 2147680262
Const STG_E_INVALIDHEADER = 2147680507
Const STG_E_INVALIDNAME = 2147680508
Const STG_E_INVALIDPARAMETER = 2147680343
Const STG_E_INVALIDPOINTER = 2147680265
Const STG_E_LOCKVIOLATION = 2147680289
Const STG_E_MEDIUMFULL = 2147680368
Const STG_E_NOMOREFILES = 2147680274
Const STG_E_NOTCURRENT = 2147680513
Const STG_E_NOTFILEBASEDSTORAGE = 2147680519
Const STG_E_OLDDLL = 2147680517
Const STG_E_OLDFORMAT = 2147680516
Const STG_E_PATHNOTFOUND = 2147680259
Const STG_E_READFAULT = 2147680286
Const STG_E_REVERTED = 2147680514
Const STG_E_SEEKERROR = 2147680281
Const STG_E_SHAREREQUIRED = 2147680518
Const STG_E_SHAREVIOLATION = 2147680288
Const STG_E_TOOMANYOPENFILES = 2147680260
Const STG_E_UNIMPLEMENTEDFUNCTION = 2147680510
Const STG_E_UNKNOWN = 2147680509
Const STG_E_WRITEFAULT = 2147680285
Const STG_S_CONVERTED = 197120
Const STM_GETICON = 369
Const STM_MSGMAX = 370
Const STM_SETICON = 368
Const STOCK_LAST = 16
Const STOPBITS_10 = 1
Const STOPBITS_15 = 2
Const STOPBITS_20 = 4
Const STREAM_CONTAINS_SECURITY = 2
Const STREAM_MODIFIED_WHEN_READ = 1
Const STRETCH_ANDSCANS = 1
Const STRETCH_DELETESCANS = 3
Const STRETCH_HALFTONE = 4
Const STRETCH_ORSCANS = 2
Const StretchBltC = 2048
Const STYLE_DESCRIPTION_SIZE = 32
Const SUBLANG_CHINESE_HONGKONG = 3
Const SUBLANG_CHINESE_SIMPLIFIED = 2
Const SUBLANG_CHINESE_SINGAPORE = 4
Const SUBLANG_CHINESE_TRADITIONAL = 1
Const SUBLANG_DEFAULT = 1
Const SUBLANG_DUTCH = 1
Const SUBLANG_DUTCH_BELGIAN = 2
Const SUBLANG_ENGLISH_AUS = 3
Const SUBLANG_ENGLISH_CAN = 4
Const SUBLANG_ENGLISH_EIRE = 6
Const SUBLANG_ENGLISH_NZ = 5
Const SUBLANG_ENGLISH_UK = 2
Const SUBLANG_ENGLISH_US = 1
Const SUBLANG_FRENCH = 1
Const SUBLANG_FRENCH_BELGIAN = 2
Const SUBLANG_FRENCH_CANADIAN = 3
Const SUBLANG_FRENCH_SWISS = 4
Const SUBLANG_GERMAN = 1
Const SUBLANG_GERMAN_AUSTRIAN = 3
Const SUBLANG_GERMAN_SWISS = 2
Const SUBLANG_ITALIAN = 1
Const SUBLANG_ITALIAN_SWISS = 2
Const SUBLANG_NEUTRAL = 0
Const SUBLANG_NORWEGIAN_BOKMAL = 1
Const SUBLANG_NORWEGIAN_NYNORSK = 2
Const SUBLANG_PORTUGUESE = 2
Const SUBLANG_PORTUGUESE_BRAZILIAN = 1
Const SUBLANG_SPANISH = 1
Const SUBLANG_SPANISH_MEXICAN = 2
Const SUBLANG_SPANISH_MODERN = 3
Const SUBLANG_SYS_DEFAULT = 2
Const SUCCESSFUL_ACCESS_ACE_FLAG = 64
Const SW_ERASE = 4
Const SW_HIDE = 0
Const SW_INVALIDATE = 2
Const SW_MAX = 10
Const SW_MAXIMIZE = 3
Const SW_MINIMIZE = 6
Const SW_NORMAL = 1
Const SW_OTHERUNZOOM = 4
Const SW_OTHERZOOM = 2
Const SW_PARENTCLOSING = 1
Const SW_PARENTOPENING = 3
Const SW_RESTORE = 9
Const SW_SCROLLCHILDREN = 1
Const SW_SHOW = 5
Const SW_SHOWDEFAULT = 10
Const SW_SHOWMAXIMIZED = 3
Const SW_SHOWMINIMIZED = 2
Const SW_SHOWMINNOACTIVE = 7
Const SW_SHOWNA = 8
Const SW_SHOWNOACTIVATE = 4
Const SW_SHOWNORMAL = 1
Const SWP_FRAMECHANGED = 32
Const SWP_HIDEWINDOW = 128
Const SWP_NOACTIVATE = 16
Const SWP_NOCOPYBITS = 256
Const SWP_NOMOVE = 2
Const SWP_NOOWNERZORDER = 512
Const SWP_NOREDRAW = 8
Const SWP_NOREPOSITION = SWP_NOOWNERZORDER
Const SWP_NOSIZE = 1
Const SWP_NOZORDER = 4
Const SWP_SHOWWINDOW = 64
Const SYMBOL_CHARSET = 2
Const SYNCHRONIZE = 1048576
Const SYSPAL_ERROR = 0
Const SYSPAL_NOSTATIC = 2
Const SYSPAL_STATIC = 1
Const SYSTEM_ALARM_ACE_TYPE = 3
Const SYSTEM_AUDIT_ACE_TYPE = 2
Const SYSTEM_FIXED_FONT = 16
Const SYSTEM_FONT = 13
Const TA_BASELINE = 24
Const TA_BOTTOM = 8
Const TA_CENTER = 6
Const TA_LEFT = 0
Const TA_NOUPDATECP = 0
Const TA_RIGHT = 2
Const TA_TOP = 0
Const TA_UPDATECP = 1
Const TC_CP_STROKE = 4
Const TC_CR_90 = 8
Const TC_CR_ANY = 16
Const TC_EA_DOUBLE = 512
Const TC_GP_TRAP = 2
Const TC_HARDERR = 1
Const TC_IA_ABLE = 1024
Const TC_NORMAL = 0
Const TC_OP_CHARACTER = 1
Const TC_OP_STROKE = 2
Const TC_RA_ABLE = 8192
Const TC_RESERVED = 32768
Const TC_SA_CONTIN = 256
Const TC_SA_DOUBLE = 64
Const TC_SA_INTEGER = 128
Const TC_SCROLLBLT = 65536
Const TC_SF_X_YINDEP = 32
Const TC_SIGNAL = 3
Const TC_SO_ABLE = 4096
Const TC_UA_ABLE = 2048
Const TC_VA_ABLE = 16384
Const TCI_SRCCHARSET = 1
Const TCI_SRCCODEPAGE = 2
Const TCI_SRCFONTSIG = 3
Const TECHNOLOGY = 2
Const TEXTCAPS = 34
Const TF_FORCEDRIVE = 128
Const THAI_CHARSET = 222
Const THREAD_BASE_PRIORITY_IDLE = -15
Const THREAD_BASE_PRIORITY_LOWRT = 15
Const THREAD_BASE_PRIORITY_MAX = 2
Const THREAD_BASE_PRIORITY_MIN = -2
Const TA_MASK = TA_BASELINE + TA_CENTER + TA_UPDATECP
Const THREAD_PRIORITY_NORMAL = 0
Const THREAD_PRIORITY_TIME_CRITICAL = THREAD_BASE_PRIORITY_LOWRT
Const TIME_BYTES = 4
Const TIME_FORCE24HOURFORMAT = 8
Const TIME_MIDI = 16
Const TIME_MS = 1
Const TIME_NOMINUTESORSECONDS = 1
Const TIME_NOSECONDS = 2
Const TIME_NOTIMEMARKER = 4
Const TIME_ONESHOT = 0
Const TIME_PERIODIC = 1
Const TIME_SAMPLES = 2
Const TIME_SMPTE = 8
Const TIMEOUT_ASYNC = 65535
Const TIMERR_BASE = 96
Const TIMERR_NOCANDO = TIMERR_BASE + 1
Const TIMERR_NOERROR = 0
Const TIMERR_STRUCT = TIMERR_BASE + 33
Const TLS_OUT_OF_INDEXES = 65535
Const TMPF_DEVICE = 8
Const TMPF_FIXED_PITCH = 1
Const TMPF_TRUETYPE = 4
Const TMPF_VECTOR = 2
Const TokenDefaultDacl = 6
Const TokenGroups = 2
Const TokenImpersonationLevel = 9
Const TokenOwner = 4
Const TokenPrimaryGroup = 5
Const TokenPrivileges = 3
Const TokenSource = 7
Const TokenStatistics = 10
Const TokenType = 8
Const TokenUser = 1
Const TPM_CENTERALIGN = 4
Const TPM_LEFTALIGN = 0
Const TPM_LEFTBUTTON = 0
Const TPM_RIGHTALIGN = 8
Const TPM_RIGHTBUTTON = 2
Const TRANSFORM_CTM = 4107
Const TRANSPARENT = 1
Const TRUETYPE_FONTTYPE = 4
Const TRUNCATE_EXISTING = 5
Const TT_AVAILABLE = 1
Const TT_ENABLED = 2
Const TT_POLYGON_TYPE = 24
Const TT_PRIM_LINE = 1
Const TT_PRIM_QSPLINE = 2
Const TURKISH_CHARSET = 162
Const TWOSTOPBITS = 2
Const TYPE_E_AMBIGUOUSNAME = 2147647532
Const TYPE_E_BADMODULEKIND = 2147649725
Const TYPE_E_BUFFERTOOSMALL = 2147647510
Const TYPE_E_CANTCREATETMPFILE = 2147650723
Const TYPE_E_CANTLOADLIBRARY = 2147654730
Const TYPE_E_CIRCULARTYPE = 2147654788
Const TYPE_E_DLLFUNCTIONNOTFOUND = 2147647535
Const TYPE_E_DUPLICATEID = 2147649734
Const TYPE_E_ELEMENTNOTFOUND = 2147647531
Const TYPE_E_INCONSISTENTPROPFUNCS = 2147654787
Const TYPE_E_INVALIDID = 2147649743
Const TYPE_E_INVALIDSTATE = 2147647529
Const TYPE_E_INVDATAREAD = 2147647512
Const TYPE_E_IOERROR = 2147650722
Const TYPE_E_LIBNOTREGISTERED = 2147647517
Const TYPE_E_NAMECONFLICT = 2147647533
Const TYPE_E_OUTOFBOUNDS = 2147650721
Const TYPE_E_QUALIFIEDNAMEDISALLOWED = 2147647528
Const TYPE_E_REGISTRYACCESS = 2147647516
Const TYPE_E_SIZETOOBIG = 2147649733
Const TYPE_E_TYPEMISMATCH = 2147650720
Const TYPE_E_UNDEFINEDTYPE = 2147647527
Const TYPE_E_UNKNOWNLCID = 2147647534
Const TYPE_E_UNSUPFORMAT = 2147647513
Const TYPE_E_WRONGTYPEKIND = 2147647530
Const UI_CAP_2700 = 1
Const UI_CAP_ROT90 = 2
Const UI_CAP_ROTANY = 4
Const UNIQUE_NAME = 0
Const UNLOAD_DLL_DEBUG_EVENT = 7
Const VALID_INHERIT_FLAGS = 15
Const VARIABLE_PITCH = 2
Const VER_PLATFORM_WIN32_NT = 2
Const VER_PLATFORM_WIN32_WINDOWS = 1
Const VER_PLATFORM_WIN32s = 0
Const VERTRES = 10
Const VERTSIZE = 6
Const VFF_BUFFTOOSMALL = 4
Const VFF_CURNEDEST = 1
Const VFF_FILEINUSE = 2
Const VFFF_ISSHAREDFILE = 1
Const VFT_APP = 1
Const VFT_DLL = 2
Const VFT_DRV = 3
Const VFT_FONT = 4
Const VFT_STATIC_LIB = 7
Const VFT_UNKNOWN = 0
Const VFT_VXD = 5
Const VFT2_DRV_COMM = 10
Const VFT2_DRV_DISPLAY = 4
Const VFT2_DRV_INPUTMETHOD = 11
Const VFT2_DRV_INSTALLABLE = 8
Const VFT2_DRV_KEYBOARD = 2
Const VFT2_DRV_LANGUAGE = 3
Const VFT2_DRV_MOUSE = 5
Const VFT2_DRV_NETWORK = 6
Const VFT2_DRV_PRINTER = 1
Const VFT2_DRV_SOUND = 9
Const VFT2_DRV_SYSTEM = 7
Const VFT2_FONT_RASTER = 1
Const VFT2_FONT_TRUETYPE = 3
Const VFT2_FONT_VECTOR = 2
Const VFT2_UNKNOWN = 0
Const VIEW_E_DRAW = 2147746112
Const VIEW_E_FIRST = 2147746112
Const VIEW_E_LAST = 2147746127
Const VIEW_S_ALREADY_FROZEN = 262464
Const VIEW_S_FIRST = 262464
Const VIEW_S_LAST = 262479
Const VIF_ACCESSVIOLATION = 512
Const VIF_BUFFTOOSMALL = 262144
Const VIF_CANNOTCREATE = 2048
Const VIF_CANNOTDELETE = 4096
Const VIF_CANNOTDELETECUR = 16384
Const VIF_CANNOTREADDST = 131072
Const VIF_CANNOTREADSRC = 65536
Const VIF_CANNOTRENAME = 8192
Const VIF_DIFFCODEPG = 16
Const VIF_DIFFLANG = 8
Const VIF_DIFFTYPE = 32
Const VIF_FILEINUSE = 128
Const VIF_MISMATCH = 2
Const VIF_OUTOFMEMORY = 32768
Const VIF_OUTOFSPACE = 256
Const VIF_SHARINGVIOLATION = 1024
Const VIF_SRCOLD = 4
Const VIF_TEMPFILE = 1
Const VIF_WRITEPROT = 64
Const VIFF_DONTDELETEOLD = 2
Const VIFF_FORCEINSTALL = 1
Const VK_ADD = 107
Const VK_ATTN = 246
Const VK_BACK = 8
Const VK_CANCEL = 3
Const VK_CAPITAL = 20
Const VK_CLEAR = 12
Const VK_CONTROL = 17
Const VK_CRSEL = 247
Const VK_DECIMAL = 110
Const VK_DELETE = 46
Const VK_DIVIDE = 111
Const VK_DOWN = 40
Const VK_END = 35
Const VK_EREOF = 249
Const VK_ESCAPE = 27
Const VK_EXECUTE = 43
Const VK_EXSEL = 248
Const VK_F1 = 112
Const VK_F10 = 121
Const VK_F11 = 122
Const VK_F12 = 123
Const VK_F13 = 124
Const VK_F14 = 125
Const VK_F15 = 126
Const VK_F16 = 127
Const VK_F17 = 128
Const VK_F18 = 129
Const VK_F19 = 130
Const VK_F2 = 113
Const VK_F20 = 131
Const VK_F21 = 132
Const VK_F22 = 133
Const VK_F23 = 134
Const VK_F24 = 135
Const VK_F3 = 114
Const VK_F4 = 115
Const VK_F5 = 116
Const VK_F6 = 117
Const VK_F7 = 118
Const VK_F8 = 119
Const VK_F9 = 120
Const VK_HELP = 47
Const VK_HOME = 36
Const VK_INSERT = 45
Const VK_LBUTTON = 1
Const VK_LCONTROL = 162
Const VK_LEFT = 37
Const VK_LMENU = 164
Const VK_LSHIFT = 160
Const VK_MBUTTON = 4
Const VK_MENU = 18
Const VK_MULTIPLY = 106
Const VK_NEXT = 34
Const VK_NONAME = 252
Const VK_NUMLOCK = 144
Const VK_NUMPAD0 = 96
Const VK_NUMPAD1 = 97
Const VK_NUMPAD2 = 98
Const VK_NUMPAD3 = 99
Const VK_NUMPAD4 = 100
Const VK_NUMPAD5 = 101
Const VK_NUMPAD6 = 102
Const VK_NUMPAD7 = 103
Const VK_NUMPAD8 = 104
Const VK_NUMPAD9 = 105
Const VK_OEM_CLEAR = 254
Const VK_PA1 = 253
Const VK_PAUSE = 19
Const VK_PLAY = 250
Const VK_PRINT = 42
Const VK_PRIOR = 33
Const VK_PROCESSKEY = 229
Const VK_RBUTTON = 2
Const VK_RCONTROL = 163
Const VK_RETURN = 13
Const VK_RIGHT = 39
Const VK_RMENU = 165
Const VK_RSHIFT = 161
Const VK_SCROLL = 145
Const VK_SELECT = 41
Const VK_SEPARATOR = 108
Const VK_SHIFT = 16
Const VK_SNAPSHOT = 44
Const VK_SPACE = 32
Const VK_SUBTRACT = 109
Const VK_TAB = 9
Const VK_UP = 38
Const VK_ZOOM = 251
Const VOS__BASE = 0
Const VOS__PM16 = 2
Const VOS__PM32 = 3
Const VOS__WINDOWS16 = 1
Const VOS__WINDOWS32 = 4
Const VOS_DOS = 65536
Const VOS_DOS_WINDOWS16 = 65537
Const VOS_DOS_WINDOWS32 = 65540
Const VOS_NT = 262144
Const VOS_NT_WINDOWS32 = 262148
Const VOS_OS216 = 131072
Const VOS_OS216_PM16 = 131074
Const VOS_OS232 = 196608
Const VOS_OS232_PM32 = 196611
Const VOS_UNKNOWN = 0
Const VS_FF_DEBUG = 1
Const VS_FF_INFOINFERRED = 16
Const VS_FF_PATCHED = 4
Const VS_FF_PRERELEASE = 2
Const VS_FF_PRIVATEBUILD = 8
Const VS_FF_SPECIALBUILD = 32
Const VS_FFI_FILEFLAGSMASK = 63
Const VS_FFI_SIGNATURE = 4277077181
Const VS_FFI_STRUCVERSION = 65536
Const VS_USER_DEFINED = 100
Const VS_VERSION_INFO = 1
Const VTA_BASELINE = TA_BASELINE
Const VTA_BOTTOM = TA_RIGHT
Const VTA_CENTER = TA_CENTER
Const VTA_LEFT = TA_BOTTOM
Const VTA_RIGHT = TA_TOP
Const VTA_TOP = TA_LEFT
Const WA_ACTIVE = 1
Const WA_CLICKACTIVE = 2
Const WA_INACTIVE = 0
Const WAVE_ALLOWSYNC = 2
Const WAVE_FORMAT_1M08 = 1
Const WAVE_FORMAT_1M16 = 4
Const WAVE_FORMAT_1S08 = 2
Const WAVE_FORMAT_1S16 = 8
Const WAVE_FORMAT_2M08 = 16
Const WAVE_FORMAT_2M16 = 64
Const WAVE_FORMAT_2S08 = 32
Const WAVE_FORMAT_2S16 = 128
Const WAVE_FORMAT_4M08 = 256
Const WAVE_FORMAT_4M16 = 1024
Const WAVE_FORMAT_4S08 = 512
Const WAVE_FORMAT_4S16 = 2048
Const WAVE_FORMAT_DIRECT = 8
Const WAVE_FORMAT_DIRECT_QUERY = 9
Const WAVE_FORMAT_PCM = 1
Const WAVE_FORMAT_QUERY = 1
Const WAVE_INVALIDFORMAT = 0
Const WAVE_MAPPED = 4
Const WAVE_MAPPER = -1
Const WAVE_VALID = 3
Const WAVECAPS_LRVOLUME = 8
Const WAVECAPS_PITCH = 1
Const WAVECAPS_PLAYBACKRATE = 2
Const WAVECAPS_SYNC = 16
Const WAVECAPS_VOLUME = 4
Const WAVERR_BASE = 32
Const WAVERR_BADFORMAT = WAVERR_BASE + 0
Const WAVERR_LASTERROR = WAVERR_BASE + 3
Const WAVERR_STILLPLAYING = WAVERR_BASE + 1
Const WAVERR_SYNC = WAVERR_BASE + 3
Const WAVERR_UNPREPARED = WAVERR_BASE + 2
Const WB_ISDELIMITER = 2
Const WB_LEFT = 0
Const WB_RIGHT = 1
Const WC_COMPOSITECHECK = 512
Const WC_DEFAULTCHAR = 64
Const WC_DEFAULTCHECK = 256
Const WC_DIALOG = 8002
Const WC_DISCARDNS = 16
Const WC_SEPCHARS = 32
Const WH_CALLWNDPROC = 4
Const WH_CBT = 5
Const WH_DEBUG = 9
Const WH_FOREGROUNDIDLE = 11
Const WH_GETMESSAGE = 3
Const WH_HARDWARE = 8
Const WH_JOURNALPLAYBACK = 1
Const WH_JOURNALRECORD = 0
Const WH_KEYBOARD = 2
Const WH_MAX = 11
Const WH_MIN = -1
Const WH_MOUSE = 7
Const WH_MSGFILTER = -1
Const WH_SHELL = 10
Const WH_SYSMSGFILTER = 6
Const WHDR_BEGINLOOP = 4
Const WHDR_DONE = 1
Const WHDR_ENDLOOP = 8
Const WHDR_INQUEUE = 16
Const WHDR_PREPARED = 2
Const WHDR_VALID = 31
Const WHITE_BRUSH = 0
Const WHITE_PEN = 6
Const WHITENESS = 16711778
Const WHITEONBLACK = 2
Const WIM_CLOSE = MM_WIM_CLOSE
Const WIM_DATA = MM_WIM_DATA
Const WIM_OPEN = MM_WIM_OPEN
Const WINDING = 2
Const WINDOW_BUFFER_SIZE_EVENT = 4
Const WINSTA_ACCESSCLIPBOARD = 4
Const WINSTA_ACCESSPUBLICATOMS = 32
Const WINSTA_CREATEDESKTOP = 8
Const WINSTA_ENUMDESKTOPS = 1
Const WINSTA_ENUMERATE = 256
Const WINSTA_EXITWINDOWS = 64
Const WINSTA_READATTRIBUTES = 2
Const WINSTA_READSCREEN = 512
Const WINSTA_WRITEATTRIBUTES = 16
Const WM_ACTIVATE = 6
Const WM_ACTIVATEAPP = 28
Const WM_ASKCBFORMATNAME = 780
Const WM_CANCELJOURNAL = 75
Const WM_CANCELMODE = 31
Const WM_CHANGECBCHAIN = 781
Const WM_CHAR = 258
Const WM_CHARTOITEM = 47
Const WM_CHILDACTIVATE = 34
Const WM_CHOOSEFONT_GETLOGFONT = WM_USER + 1
Const WM_CHOOSEFONT_SETFLAGS = WM_USER + 102
Const WM_CHOOSEFONT_SETLOGFONT = WM_USER + 101
Const WM_CLEAR = 771
Const WM_CLOSE = 16
Const WM_COMMAND = 273
Const WM_COMMNOTIFY = 68
Const WM_COMPACTING = 65
Const WM_COMPAREITEM = 57
Const WM_CONVERTREQUESTEX = 264
Const WM_COPY = 769
Const WM_COPYDATA = 74
Const WM_CREATE = 1
Const WM_CTLCOLORBTN = 309
Const WM_CTLCOLORDLG = 310
Const WM_CTLCOLOREDIT = 307
Const WM_CTLCOLORLISTBOX = 308
Const WM_CTLCOLORMSGBOX = 306
Const WM_CTLCOLORSCROLLBAR = 311
Const WM_CTLCOLORSTATIC = 312
Const WM_CUT = 768
Const WM_DDE_FIRST = 992
Const WM_DDE_ACK = WM_DDE_FIRST + 4
Const WM_DDE_ADVISE = WM_DDE_FIRST + 2
Const WM_DDE_DATA = WM_DDE_FIRST + 5
Const WM_DDE_EXECUTE = WM_DDE_FIRST + 8
Const WM_DDE_INITIATE = WM_DDE_FIRST
Const WM_DDE_LAST = WM_DDE_FIRST + 8
Const WM_DDE_POKE = WM_DDE_FIRST + 7
Const WM_DDE_REQUEST = WM_DDE_FIRST + 6
Const WM_DDE_TERMINATE = WM_DDE_FIRST + 1
Const WM_DDE_UNADVISE = WM_DDE_FIRST + 3
Const WM_DEADCHAR = 259
Const WM_DELETEITEM = 45
Const WM_DESTROY = 2
Const WM_DESTROYCLIPBOARD = 775
Const WM_DEVMODECHANGE = 27
Const WM_DRAWCLIPBOARD = 776
Const WM_DRAWITEM = 43
Const WM_DROPFILES = 563
Const WM_ENABLE = 10
Const WM_ENDSESSION = 22
Const WM_ENTERIDLE = 289
Const WM_ENTERMENULOOP = 529
Const WM_ERASEBKGND = 20
Const WM_EXITMENULOOP = 530
Const WM_FONTCHANGE = 29
Const WM_GETDLGCODE = 135
Const WM_GETFONT = 49
Const WM_GETHOTKEY = 51
Const WM_GETMINMAXINFO = 36
Const WM_GETTEXT = 13
Const WM_GETTEXTLENGTH = 14
Const WM_HOTKEY = 786
Const WM_HSCROLL = 276
Const WM_HSCROLLCLIPBOARD = 782
Const WM_ICONERASEBKGND = 39
Const WM_IME_CHAR = 646
Const WM_IME_COMPOSITION = 271
Const WM_IME_COMPOSITIONFULL = 644
Const WM_IME_CONTROL = 643
Const WM_IME_ENDCOMPOSITION = 270
Const WM_IME_KEYDOWN = 656
Const WM_IME_KEYLAST = 271
Const WM_IME_KEYUP = 657
Const WM_IME_NOTIFY = 642
Const WM_IME_SELECT = 645
Const WM_IME_SETCONTEXT = 641
Const WM_IME_STARTCOMPOSITION = 269
Const WM_INITDIALOG = 272
Const WM_INITMENU = 278
Const WM_INITMENUPOPUP = 279
Const WM_KEYDOWN = 256
Const WM_KEYFIRST = 256
Const WM_KEYLAST = 264
Const WM_KEYUP = 257
Const WM_KILLFOCUS = 8
Const WM_LBUTTONDBLCLK = 515
Const WM_LBUTTONDOWN = 513
Const WM_LBUTTONUP = 514
Const WM_MBUTTONDBLCLK = 521
Const WM_MBUTTONDOWN = 519
Const WM_MBUTTONUP = 520
Const WM_MDIACTIVATE = 546
Const WM_MDICASCADE = 551
Const WM_MDICREATE = 544
Const WM_MDIDESTROY = 545
Const WM_MDIGETACTIVE = 553
Const WM_MDIICONARRANGE = 552
Const WM_MDIMAXIMIZE = 549
Const WM_MDINEXT = 548
Const WM_MDIREFRESHMENU = 564
Const WM_MDIRESTORE = 547
Const WM_MDISETMENU = 560
Const WM_MDITILE = 550
Const WM_MEASUREITEM = 44
Const WM_MENUCHAR = 288
Const WM_MENUSELECT = 287
Const WM_MOUSEACTIVATE = 33
Const WM_MOUSEFIRST = 512
Const WM_MOUSELAST = 521
Const WM_MOUSEMOVE = 512
Const WM_MOVE = 3
Const WM_NCACTIVATE = 134
Const WM_NCCALCSIZE = 131
Const WM_NCCREATE = 129
Const WM_NCDESTROY = 130
Const WM_NCHITTEST = 132
Const WM_NCLBUTTONDBLCLK = 163
Const WM_NCLBUTTONDOWN = 161
Const WM_NCLBUTTONUP = 162
Const WM_NCMBUTTONDBLCLK = 169
Const WM_NCMBUTTONDOWN = 167
Const WM_NCMBUTTONUP = 168
Const WM_NCMOUSEMOVE = 160
Const WM_NCPAINT = 133
Const WM_NCRBUTTONDBLCLK = 166
Const WM_NCRBUTTONDOWN = 164
Const WM_NCRBUTTONUP = 165
Const WM_NEXTDLGCTL = 40
Const WM_NULL = 0
Const WM_OTHERWINDOWCREATED = 66
Const WM_OTHERWINDOWDESTROYED = 67
Const WM_PAINT = 15
Const WM_PAINTCLIPBOARD = 777
Const WM_PAINTICON = 38
Const WM_PALETTECHANGED = 785
Const WM_PALETTEISCHANGING = 784
Const WM_PARENTNOTIFY = 528
Const WM_PASTE = 770
Const WM_PENWINFIRST = 896
Const WM_PENWINLAST = 911
Const WM_POWER = 72
Const WM_PSD_ENVSTAMPRECT = WM_USER + 5
Const WM_PSD_FULLPAGERECT = WM_USER + 1
Const WM_PSD_GREEKTEXTRECT = WM_USER + 4
Const WM_PSD_MARGINRECT = WM_USER + 3
Const WM_PSD_MINMARGINRECT = WM_USER + 2
Const WM_PSD_PAGESETUPDLG = WM_USER
Const WM_PSD_YAFULLPAGERECT = WM_USER + 6
Const WM_QUERYDRAGICON = 55
Const WM_QUERYENDSESSION = 17
Const WM_QUERYNEWPALETTE = 783
Const WM_QUERYOPEN = 19
Const WM_QUEUESYNC = 35
Const WM_QUIT = 18
Const WM_RBUTTONDBLCLK = 518
Const WM_RBUTTONDOWN = 516
Const WM_RBUTTONUP = 517
Const WM_RENDERALLFORMATS = 774
Const WM_RENDERFORMAT = 773
Const WM_SETCURSOR = 32
Const WM_SETFOCUS = 7
Const WM_SETFONT = 48
Const WM_SETHOTKEY = 50
Const WM_SETREDRAW = 11
Const WM_SETTEXT = 12
Const WM_SHOWWINDOW = 24
Const WM_SIZE = 5
Const WM_SIZECLIPBOARD = 779
Const WM_SPOOLERSTATUS = 42
Const WM_SYSCHAR = 262
Const WM_SYSCOLORCHANGE = 21
Const WM_SYSCOMMAND = 274
Const WM_SYSDEADCHAR = 263
Const WM_SYSKEYDOWN = 260
Const WM_SYSKEYUP = 261
Const WM_TIMECHANGE = 30
Const WM_TIMER = 275
Const WM_UNDO = 772
Const WM_VKEYTOITEM = 46
Const WM_VSCROLL = 277
Const WM_VSCROLLCLIPBOARD = 778
Const WM_WINDOWPOSCHANGED = 71
Const WM_WINDOWPOSCHANGING = 70
Const WM_WININICHANGE = 26
Const WN_ACCESS_DENIED = ERROR_ACCESS_DENIED
Const WN_ALREADY_CONNECTED = ERROR_ALREADY_ASSIGNED
Const WN_BAD_HANDLE = ERROR_INVALID_HANDLE
Const WN_BAD_LOCALNAME = ERROR_BAD_DEVICE
Const WN_BAD_NETNAME = ERROR_BAD_NET_NAME
Const WN_BAD_PASSWORD = ERROR_INVALID_PASSWORD
Const WN_BAD_POINTER = ERROR_INVALID_ADDRESS
Const WN_BAD_PROFILE = ERROR_BAD_PROFILE
Const WN_BAD_PROVIDER = ERROR_BAD_PROVIDER
Const WN_BAD_USER = ERROR_BAD_USERNAME
Const WN_BAD_VALUE = ERROR_INVALID_PARAMETER
Const WN_CANNOT_OPEN_PROFILE = ERROR_CANNOT_OPEN_PROFILE
Const WN_CONNECTION_CLOSED = ERROR_CONNECTION_UNAVAIL
Const WN_DEVICE_ERROR = ERROR_GEN_FAILURE
Const WN_DEVICE_IN_USE = ERROR_DEVICE_IN_USE
Const WN_EXTENDED_ERROR = ERROR_EXTENDED_ERROR
Const WN_FUNCTION_BUSY = ERROR_BUSY
Const WN_MORE_DATA = ERROR_MORE_DATA
Const WN_NET_ERROR = ERROR_UNEXP_NET_ERR
Const WN_NO_ERROR = NO_ERROR
Const WN_NO_MORE_ENTRIES = ERROR_NO_MORE_ITEMS
Const WN_NO_NET_OR_BAD_PATH = ERROR_NO_NET_OR_BAD_PATH
Const WN_NO_NETWORK = ERROR_NO_NETWORK
Const WN_NOT_CONNECTED = ERROR_NOT_CONNECTED
Const WN_NOT_CONTAINER = ERROR_NOT_CONTAINER
Const WN_NOT_SUPPORTED = ERROR_NOT_SUPPORTED
Const WN_OPEN_FILES = ERROR_OPEN_FILES
Const WN_OUT_OF_MEMORY = ERROR_NOT_ENOUGH_MEMORY
Const WN_SUCCESS = NO_ERROR
Const WN_WINDOWS_ERROR = ERROR_UNEXP_NET_ERR
Const WOM_CLOSE = MM_WOM_CLOSE
Const WOM_DONE = MM_WOM_DONE
Const WOM_OPEN = MM_WOM_OPEN
Const WPF_RESTORETOMAXIMIZED = 2
Const WPF_SETMINPOSITION = 1
Const WRITE_DAC = 262144
Const WRITE_OWNER = 524288
Const WRITEAPI = 1
Const WS_BORDER = 8388608
Const WS_CAPTION = 12582912
Const WS_CHILD = 1073741824
Const WS_CHILDWINDOW = WS_CHILD
Const WS_CLIPCHILDREN = 33554432
Const WS_CLIPSIBLINGS = 67108864
Const WS_DISABLED = 134217728
Const WS_DLGFRAME = 4194304
Const WS_EX_ACCEPTFILES = 16
Const WS_EX_DLGMODALFRAME = 1
Const WS_EX_NOPARENTNOTIFY = 4
Const WS_EX_TOPMOST = 8
Const WS_EX_TRANSPARENT = 32
Const WS_GROUP = 131072
Const WS_HSCROLL = 1048576
Const WS_MAXIMIZE = 16777216
Const WS_MAXIMIZEBOX = 65536
Const WS_MINIMIZE = 536870912
Const WS_ICONIC = WS_MINIMIZE
Const WS_MINIMIZEBOX = 131072
Const WS_OVERLAPPED = 0
Const WS_POPUP = 2147483648
Const WS_SYSMENU = 524288
Const WS_POPUPWINDOW = WS_POPUP + WS_BORDER + WS_SYSMENU
Const WS_TABSTOP = 65536
Const WS_THICKFRAME = 262144
Const WS_SIZEBOX = WS_THICKFRAME
Const WS_TILED = WS_OVERLAPPED
Const WS_VISIBLE = 268435456
Const WS_VSCROLL = 2097152
Const WVR_ALIGNBOTTOM = 64
Const WVR_ALIGNLEFT = 32
Const WVR_ALIGNRIGHT = 128
Const WVR_ALIGNTOP = 16
Const WVR_HREDRAW = 256
Const WVR_VALIDRECTS = 1024
Const WVR_VREDRAW = 512
Const XCLASS_BOOL = 4096
Const XCLASS_DATA = 8192
Const XCLASS_FLAGS = 16384
Const XCLASS_MASK = 64512
Const XCLASS_NOTIFICATION = 32768
Const XST_ADVACKRCVD = 13
Const XST_ADVDATAACKRCVD = 16
Const XST_ADVDATASENT = 15
Const XST_ADVSENT = 11
Const XST_CONNECTED = 2
Const XST_DATARCVD = 6
Const XST_EXECACKRCVD = 10
Const XST_EXECSENT = 9
Const XST_INCOMPLETE = 1
Const XST_INIT1 = 3
Const XST_INIT2 = 4
Const XST_NULL = 0
Const XST_POKEACKRCVD = 8
Const XST_POKESENT = 7
Const XST_REQSENT = 5
Const XST_UNADVACKRCVD = 14
Const XST_UNADVSENT = 12
Const XTYP_ADVDATA = XCLASS_FLAGS + 16
Const XTYP_ADVSTART = XCLASS_BOOL + 48
Const XTYP_ADVSTOP = XCLASS_NOTIFICATION + 64
Const XTYP_EXECUTE = XCLASS_FLAGS + 80
Const XTYP_MASK = 240
Const XTYP_MONITOR = 2.0907E+43
Const XTYP_POKE = XCLASS_FLAGS + 144
Const XTYP_REQUEST = XCLASS_DATA + 176
Const XTYP_SHIFT = 4
Const XTYP_XACT_COMPLETE = XCLASS_NOTIFICATION + 128
Const XTYPF_ACKREQ = 8
Const XTYPF_NOBLOCK = 2
Const XTYPF_NODATA = 4
Const DMBIN_FIRST = DMBIN_UPPER
Const DRV_CANCEL = DRVCNF_CANCEL
Const DRV_OK = DRVCNF_OK
Const DRV_RESTART = DRVCNF_RESTART
Const EC_DISABLE = ST_BLOCKED
Const EC_ENABLEONE = ST_BLOCKNEXT
Const FILE_MAP_COPY = SECTION_QUERY
Const FILE_MAP_READ = SECTION_MAP_READ
Const FILE_MAP_WRITE = SECTION_MAP_WRITE
Const FW_BLACK = FW_HEAVY
Const FW_DEMIBOLD = FW_SEMIBOLD
Const HOLLOW_BRUSH = NULL_BRUSH
Const MCI_MODE_NOT_READY = MCI_STRING_OFFSET + 12
Const MCI_MODE_OPEN = MCI_STRING_OFFSET + 18
Const MCI_MODE_PAUSE = MCI_STRING_OFFSET + 17
Const MCI_MODE_PLAY = MCI_STRING_OFFSET + 14
Const MCI_MODE_RECORD = MCI_STRING_OFFSET + 15
Const MCI_MODE_SEEK = MCI_STRING_OFFSET + 16
Const MCI_MODE_STOP = MCI_STRING_OFFSET + 13
Const MIDISTRM_ERROR = -2
Const MIM_CLOSE = MM_MIM_CLOSE
Const MIM_DATA = MM_MIM_DATA
Const MIM_ERROR = MM_MIM_ERROR
Const MIM_LONGDATA = MM_MIM_LONGDATA
Const MIM_LONGERROR = MM_MIM_LONGERROR
Const MIM_MOREDATA = MM_MIM_MOREDATA
Const MIM_OPEN = MM_MIM_OPEN
Const MIXER_OBJECTF_HMIDIIN = MIXER_OBJECTF_HANDLE + MIXER_OBJECTF_MIDIIN
Const MIXER_OBJECTF_HMIXER = MIXER_OBJECTF_HANDLE + MIXER_OBJECTF_MIXER
Const MM_MAX_FIXEDSCALE = MM_TWIPS
Const MM_MIN = MM_TEXT
Const QS_ALLINPUT = QS_SENDMESSAGE + QS_PAINT + QS_TIMER + QS_POSTMESSAGE
Const QS_MOUSE = QS_MOUSEMOVE + QS_MOUSEBUTTON
Const QS_INPUT = QS_MOUSE + QS_KEY
Const SC_ICON = SC_MINIMIZE
Const SWP_DRAWFRAME = SWP_FRAMECHANGED
Const THREAD_PRIORITY_HIGHEST = THREAD_BASE_PRIORITY_MAX
Const THREAD_PRIORITY_LOWEST = THREAD_BASE_PRIORITY_MIN
Const THREAD_PRIORITY_ABOVE_NORMAL = THREAD_PRIORITY_HIGHEST - 1
Const THREAD_PRIORITY_BELOW_NORMAL = THREAD_PRIORITY_LOWEST + 1
Const THREAD_PRIORITY_ERROR_RETURN = MAXLONG
Const THREAD_PRIORITY_IDLE = THREAD_BASE_PRIORITY_IDLE
Const WVR_REDRAW = WVR_HREDRAW + WVR_VREDRAW
Const XTYP_CONNECT = XCLASS_BOOL + XTYPF_NOBLOCK + 96
Const XTYP_CONNECT_CONFIRM = XCLASS_NOTIFICATION + XTYPF_NOBLOCK + 112
Const XTYP_DISCONNECT = XCLASS_NOTIFICATION + XTYPF_NOBLOCK + 192
Const XTYP_REGISTER = XCLASS_NOTIFICATION + XTYPF_NOBLOCK + 160
Const XTYP_UNREGISTER = XCLASS_NOTIFICATION + XTYPF_NOBLOCK + 208
Const XTYP_WILDCONNECT = XCLASS_DATA + XTYPF_NOBLOCK + 224
'CONST FVIRTKEY = True
'CONST WS_TILEDWINDOW = WS_OVERLAPPEDWINDOW
'CONST XTYP_ADVREQ = XCLASS_DATA = OrXTYPF_NOBLOCK + 32
'CONST XTYP_ERROR = XCLASS_NOTIFICATION = OrXTYPF_NOBLOCK
Reply
#2
A good way to check constants is to use FART (Find And Replace Text). It's a great free utility. I put it in the QB64 directory and have it recursively search all ".h" files for a constant that I need the value of. Then it returns all lines where it finds that instance. Very handy.
The noticing will continue
Reply
#3
(08-15-2025, 04:21 PM)SpriggsySpriggs Wrote: A good way to check constants is to use FART (Find And Replace Text). It's a great free utility. I put it in the QB64 directory and have it recursively search all ".h" files for a constant that I need the value of. Then it returns all lines where it finds that instance. Very handy.
That could come in handy, thanks. 
Nice name, LoL!
Reply
#4
That's such a long ass list.  Wouldn't it be easier to just upload it as a file, or convert it to text and then put it in a code box, rather than making it a table which you have to scroll past every entry with?  As it is, it requires a bazillion lines of scrolling to move past it and see who's typing what and talking about which and all....  LOL!
Reply
#5
Edited post, made them all CONST instead of a visual table, but it should still be just as easy to reference.  
Removed the entries which were blank or incomplete, as they didn't give you any useful information.
Moved some of the derived CONST down to the end of the list so not everything is in perfect alphabetical order.  Just a side note to be aware of.
Had 4 values which reference other CONST which we don't have a value for; I commented them out.  Those 4 may have been part of the original which were blank and incomplete, which I didn't include.

It's all inside a single code box now, so all it takes is the single click to SELECT ALL, and it also allows people to scroll past the post itself without having to scroll forever and ever to get to the next post.  

The original was messing up formatting on server response on some browsers previously.  Hopefully this keeps all the salvageable information intact for whomever might need it and makes it easier to use, without breaking the forums as it was.  Wink
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Question Latest version of QB64PE or QB64 compatible with Windows XP (32-bit)? madscijr 14 1,977 09-30-2025, 08:10 AM
Last Post: hsiangch_ong
  Test to post a new Thread + question 32 or 64 bit Rudy M 2 538 09-09-2025, 04:10 PM
Last Post: Rudy M
  Looking for 32/64 bit installer aka packager doppler 4 1,015 12-08-2024, 04:17 PM
Last Post: JRace
  Detecting color depth-16 color, 256 color, or 32 bit color dano 20 3,797 08-17-2024, 03:08 AM
Last Post: TerryRitchie
  C++ types > QB64 types: do we have an equivalent QB64PE page? madscijr 5 1,106 06-01-2024, 03:44 AM
Last Post: grymmjack

Forum Jump:


Users browsing this thread: 1 Guest(s)