blob: b48dbbed90395eadf9d97584f144b26d39f25e26 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _W32ERR_H_
#define _W32ERR_H_
#ifndef EXTERN_DECL
#define EXTERN_DECL(entry, args) entry args
#endif
EXTERN_DECL(char * map_win32_error_to_string, (DWORD error));
#endif /* !_W32ERR_H */
|