• R/O
  • SSH

libctools: Commit

This library contains code that extends and simplifies different operations
for C language based programs.


Commit MetaInfo

Revisión1bb03c0697691c5d3c1dca8d5cf8f8872fac1b73 (tree)
Tiempo2017-02-12 17:57:43
Autors.gusarov
Commiters.gusarov

Log Message

Compilation fix

Cambiar Resumen

Diferencia incremental

diff -r f473ff32ae0b -r 1bb03c069769 include/ctools/os/mutex.h
--- a/include/ctools/os/mutex.h Sun Feb 12 11:24:32 2017 +0300
+++ b/include/ctools/os/mutex.h Sun Feb 12 11:57:43 2017 +0300
@@ -40,7 +40,7 @@
4040 # if defined (CT_COMPL_MSVC)
4141 # define CT_MUTEX_AVAILABLE
4242
43-# include "ctools/std/windows/windows.h"
43+# include "ctools/os/windows/windows.h"
4444
4545
4646 CT_BEGIN_NAMESPACE
diff -r f473ff32ae0b -r 1bb03c069769 include/ctools/os/thread.h
--- a/include/ctools/os/thread.h Sun Feb 12 11:24:32 2017 +0300
+++ b/include/ctools/os/thread.h Sun Feb 12 11:57:43 2017 +0300
@@ -42,7 +42,7 @@
4242 # if defined (CT_COMPL_MSVC)
4343
4444 // TODO: Processthreadsapi.h on Windows 8 and Windows Server 2012
45-# include "ctools/std/windows/windows.h"
45+# include "ctools/os/windows/windows.h"
4646
4747
4848 # define CT_THREAD_AVAILABLE
diff -r f473ff32ae0b -r 1bb03c069769 include/ctools/trace_ext.h
--- a/include/ctools/trace_ext.h Sun Feb 12 11:24:32 2017 +0300
+++ b/include/ctools/trace_ext.h Sun Feb 12 11:57:43 2017 +0300
@@ -114,7 +114,7 @@
114114 # if defined CT_OS_WINDOWS
115115 // UNICODE is needed here for FormatMessage()/WideCharToMultiByte()
116116 # define UNICODE
117-# include "ctools/std/windows/windows.h"
117+# include "ctools/os/windows/windows.h"
118118 # undef UNICODE
119119 # endif
120120
diff -r f473ff32ae0b -r 1bb03c069769 src/os/thread.c
--- a/src/os/thread.c Sun Feb 12 11:24:32 2017 +0300
+++ b/src/os/thread.c Sun Feb 12 11:57:43 2017 +0300
@@ -11,8 +11,6 @@
1111
1212 #include "ctools/os/thread.h"
1313
14-#include "ctools/predef/external_headers.h"
15-
1614 #include "ctools/std/stdbool.h"
1715 #include "ctools/pointer.h"
1816 #include "ctools/trace.h"
Show on old repository browser