comparison src/main.cpp @ 112:9daf778feaf1 1.4

Fix usage of WIN32 macro. With c++11 this is no longer set. _WIN32 is the better macro to use anyway.
author Andre Heinecke <andre.heinecke@intevation.de>
date Thu, 08 Dec 2016 15:34:07 +0100
parents a9a343271490
children
comparison
equal deleted inserted replaced
111:e6b8f1590a01 112:9daf778feaf1
60 } 60 }
61 } 61 }
62 62
63 int realMain(int argc, char **argv); 63 int realMain(int argc, char **argv);
64 64
65 #if defined(WIN32) && defined(UNICODE) 65 #if defined(_WIN32) && defined(UNICODE)
66 66
67 /** @brief Unicode entry point. 67 /** @brief Unicode entry point.
68 * 68 *
69 * Converts arguments to UTF-8 and executes the real 69 * Converts arguments to UTF-8 and executes the real
70 * entry point realMain. 70 * entry point realMain.
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)