1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| #ifndef QWINDOWKIT_WINDOWS_H
| #define QWINDOWKIT_WINDOWS_H
|
| #include <windows.h>
|
| #include <QString>
|
| #include <QWKCore/qwkcoreglobal.h>
|
| namespace QWK {
|
| QWK_CORE_EXPORT QString winErrorMessage(DWORD code);
|
| QWK_CORE_EXPORT QString winLastErrorMessage();
|
| }
|
| #endif // QWINDOWKIT_WINDOWS_H
|
|