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