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 Small banner for links to this site: |
1 // SErr.h - Header for SetLastError routine
2 // License information for this code is in license.txt
4 #ifndef S_ERR_INCLUDED
5 #define S_ERR_INCLUDED
7 #if (defined(_WIN32) || defined(WIN32)) && !defined(NO_WINDOWS_H)
8 #include <windows.h>
9 #else
10 #include "wintypes.h"
11 #endif
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
17 DWORD WINAPI SErrSetLastError(DWORD dwErrorCode);
18 DWORD WINAPI SErrGetLastError(VOID);
20 #ifdef __cplusplus
21 }; // extern "C"
22 #endif
24 #endif
|