This library contains code that extends and simplifies different operations
for C language based programs.
Revisión | 1bb03c0697691c5d3c1dca8d5cf8f8872fac1b73 (tree) |
---|---|
Tiempo | 2017-02-12 17:57:43 |
Autor | s.gusarov |
Commiter | s.gusarov |
Compilation fix
@@ -40,7 +40,7 @@ | ||
40 | 40 | # if defined (CT_COMPL_MSVC) |
41 | 41 | # define CT_MUTEX_AVAILABLE |
42 | 42 | |
43 | -# include "ctools/std/windows/windows.h" | |
43 | +# include "ctools/os/windows/windows.h" | |
44 | 44 | |
45 | 45 | |
46 | 46 | CT_BEGIN_NAMESPACE |
@@ -42,7 +42,7 @@ | ||
42 | 42 | # if defined (CT_COMPL_MSVC) |
43 | 43 | |
44 | 44 | // TODO: Processthreadsapi.h on Windows 8 and Windows Server 2012 |
45 | -# include "ctools/std/windows/windows.h" | |
45 | +# include "ctools/os/windows/windows.h" | |
46 | 46 | |
47 | 47 | |
48 | 48 | # define CT_THREAD_AVAILABLE |
@@ -114,7 +114,7 @@ | ||
114 | 114 | # if defined CT_OS_WINDOWS |
115 | 115 | // UNICODE is needed here for FormatMessage()/WideCharToMultiByte() |
116 | 116 | # define UNICODE |
117 | -# include "ctools/std/windows/windows.h" | |
117 | +# include "ctools/os/windows/windows.h" | |
118 | 118 | # undef UNICODE |
119 | 119 | # endif |
120 | 120 |
@@ -11,8 +11,6 @@ | ||
11 | 11 | |
12 | 12 | #include "ctools/os/thread.h" |
13 | 13 | |
14 | -#include "ctools/predef/external_headers.h" | |
15 | - | |
16 | 14 | #include "ctools/std/stdbool.h" |
17 | 15 | #include "ctools/pointer.h" |
18 | 16 | #include "ctools/trace.h" |