Current News
Archived News
Search News
Discussion Forum


Old Forum
Install Programs More Downloads...
Troubleshooting
Source Code
Format Specs.
Misc. Information
Non-SF Stuff
Links




CommitLineData
7df24e1f 1Attribute VB_Name = "WinError"
2Option Explicit
3
4' GetLastError and the constants for the values returned by it
5' (only the ones known to be used by Storm or Lmpqapi are included)
6
7Declare Function GetLastError Lib "Kernel32" () As Long
8
9Public Const ERROR_SUCCESS As Long = 0
10Public Const NO_ERROR As Long = 0
11Public Const ERROR_FILE_NOT_FOUND As Long = 2
12Public Const ERROR_OUTOFMEMORY As Long = 14
13Public Const ERROR_INVALID_PARAMETER As Long = 87
14Public Const ERROR_DISK_FULL As Long = 112
15Public Const ERROR_ALREADY_EXISTS As Long = 183
16Public Const ERROR_FILE_INVALID As Long = 1006
17Public Const ERROR_UNKNOWN_PROPERTY As Long = 1608
18