diff options
author | Rr42 | 2018-05-25 18:12:31 +0530 |
---|---|---|
committer | Rr42 | 2018-05-25 18:12:31 +0530 |
commit | dcbd1d4e87abd5a90f903296a42a1464c007cc67 (patch) | |
tree | 1469332869fa67d9a1b585e3b69094e38057801b /ldmicro/ldmicro.cpp | |
parent | ddfbba31a547018c65f9da6c70257411bc224f6d (diff) | |
download | LDMicroGtk-dcbd1d4e87abd5a90f903296a42a1464c007cc67.tar.gz LDMicroGtk-dcbd1d4e87abd5a90f903296a42a1464c007cc67.tar.bz2 LDMicroGtk-dcbd1d4e87abd5a90f903296a42a1464c007cc67.zip |
Added linuxUI (analog to windows.h)
Diffstat (limited to 'ldmicro/ldmicro.cpp')
-rw-r--r-- | ldmicro/ldmicro.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ldmicro/ldmicro.cpp b/ldmicro/ldmicro.cpp index 9997b5a..e1a55a6 100644 --- a/ldmicro/ldmicro.cpp +++ b/ldmicro/ldmicro.cpp @@ -24,9 +24,14 @@ // most of the UI logic relating to the main window. // Jonathan Westhues, Oct 2004 //----------------------------------------------------------------------------- +#ifdef __UNIX__ +#include "linuxUI/linuxUI.h" +#elif defined(__WIN32__) #include <windows.h> #include <commctrl.h> #include <commdlg.h> +#endif + #include <stdio.h> #include <stdlib.h> |