mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 14:59:01 +00:00
Fixed: Including windows.h before using WinMain
This commit is contained in:
parent
7b778bbb99
commit
1722180ee3
27 changed files with 129 additions and 2 deletions
|
@ -29,6 +29,11 @@
|
|||
#include "nel/3d/text_context.h"
|
||||
#include "nel/3d/driver_user.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
#define NOMINMAX
|
||||
#include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
#ifndef FONT_DIR
|
||||
# define FONT_DIR "."
|
||||
#endif
|
||||
|
|
|
@ -28,6 +28,11 @@
|
|||
#include <nel/3d/u_driver.h>
|
||||
#include <nel/3d/u_instance.h>
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
#define NOMINMAX
|
||||
#include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
using namespace NLMISC;
|
||||
using namespace NL3D;
|
||||
|
||||
|
|
|
@ -23,6 +23,11 @@
|
|||
#include "nel/net/service.h"
|
||||
#include "nel/net/callback_server.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
using namespace std;
|
||||
using namespace NLMISC;
|
||||
using namespace NLNET;
|
||||
|
|
|
@ -36,6 +36,11 @@
|
|||
|
||||
#include "nel/net/transport_class.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
#ifndef NL_CT_CFG
|
||||
#define NL_CT_CFG ""
|
||||
#endif // NL_CT_CFG
|
||||
|
|
|
@ -36,6 +36,11 @@
|
|||
|
||||
#include "nel/net/transport_class.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
#ifndef NL_CT_CFG
|
||||
#define NL_CT_CFG ""
|
||||
#endif // NL_CT_CFG
|
||||
|
|
|
@ -33,6 +33,11 @@
|
|||
#include "nel/net/service.h"
|
||||
#include "nel/net/login_server.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
using namespace std;
|
||||
using namespace NLNET;
|
||||
using namespace NLMISC;
|
||||
|
|
|
@ -42,6 +42,11 @@
|
|||
|
||||
#include "receive_task.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
#ifndef UDP_DIR
|
||||
#define UDP_DIR ""
|
||||
#endif // UDP_DIR
|
||||
|
|
|
@ -37,6 +37,10 @@
|
|||
|
||||
#include "ais_user_models.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
//#include "nel/misc/bitmap.h"
|
||||
|
||||
|
|
|
@ -187,4 +187,9 @@ namespace MULTI_LINE_FORMATER {
|
|||
#include "ai_share/angle.h"
|
||||
#include "ai_share/world_map.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
#endif /*STDPCH_H*/
|
||||
|
|
|
@ -29,6 +29,11 @@
|
|||
#include "backup_service.h"
|
||||
#include "web_connection.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
// force admin module to link in
|
||||
extern void admin_modules_forceLink();
|
||||
void foo()
|
||||
|
|
|
@ -126,6 +126,11 @@
|
|||
#include "server_share/logger_service_client.h"
|
||||
#include "server_share/stl_allocator_checker.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
///////////
|
||||
// USING //
|
||||
///////////
|
||||
|
|
|
@ -22,8 +22,8 @@
|
|||
#include "fe_types.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
|
||||
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#elif defined NL_OS_UNIX
|
||||
|
||||
#include <unistd.h>
|
||||
|
|
|
@ -56,6 +56,11 @@
|
|||
#include "id_impulsions.h"
|
||||
#include "uid_impulsions.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
using namespace NLNET;
|
||||
using namespace NLMISC;
|
||||
using namespace CLFECOMMON;
|
||||
|
|
|
@ -48,6 +48,11 @@
|
|||
#include "client_messages.h"
|
||||
#include "sheets.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
// force admin module to link in
|
||||
extern void admin_modules_forceLink();
|
||||
void foo()
|
||||
|
|
|
@ -46,6 +46,11 @@
|
|||
#endif
|
||||
*/
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
// force admin module to link in
|
||||
extern void admin_modules_forceLink();
|
||||
void foo()
|
||||
|
|
|
@ -19,6 +19,11 @@
|
|||
#include <nel/misc/log.h>
|
||||
#include <nel/misc/variable.h>
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
using namespace std;
|
||||
using namespace NLMISC;
|
||||
using namespace NLNET;
|
||||
|
|
|
@ -35,6 +35,11 @@
|
|||
#include "log_query.h"
|
||||
#include "log_storage.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
using namespace std;
|
||||
using namespace NLMISC;
|
||||
using namespace NLNET;
|
||||
|
|
|
@ -24,6 +24,10 @@
|
|||
#include "shard_stat_db_manager.h"
|
||||
#include "hof_generator.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
using namespace NLNET;
|
||||
using namespace NLMISC;
|
||||
|
|
|
@ -27,6 +27,11 @@
|
|||
#include "mirrors.h"
|
||||
#include "messages.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
#include <mysql.h>
|
||||
|
||||
using namespace NLMISC;
|
||||
|
|
|
@ -20,6 +20,11 @@
|
|||
#include "ref_builder_task.h"
|
||||
#include "delta_builder_task.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
using namespace std;
|
||||
using namespace NLMISC;
|
||||
using namespace NLNET;
|
||||
|
|
|
@ -33,6 +33,10 @@
|
|||
// local
|
||||
#include "service_main.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// force admin module to link in
|
||||
|
|
|
@ -18,6 +18,11 @@
|
|||
|
||||
#include "db_manager.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
using namespace std;
|
||||
using namespace NLMISC;
|
||||
using namespace NLNET;
|
||||
|
|
|
@ -21,6 +21,11 @@
|
|||
|
||||
#include "nel/net/service.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
using namespace std;
|
||||
using namespace NLMISC;
|
||||
using namespace NLNET;
|
||||
|
|
|
@ -23,6 +23,11 @@
|
|||
#include <time.h>
|
||||
//#include <sys/utime.h>
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
using namespace std;
|
||||
using namespace NLMISC;
|
||||
using namespace NLNET;
|
||||
|
|
|
@ -30,6 +30,11 @@
|
|||
#include "tick_service.h"
|
||||
#include <string>
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
using namespace std;
|
||||
using namespace NLMISC;
|
||||
using namespace NLNET;
|
||||
|
|
|
@ -25,6 +25,11 @@
|
|||
|
||||
#include "patch_gen_service.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
using namespace std;
|
||||
using namespace NLMISC;
|
||||
using namespace NLNET;
|
||||
|
|
|
@ -25,6 +25,11 @@
|
|||
#include "game_share/tick_event_handler.h"
|
||||
#include "game_share/singleton_registry.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
# define NOMINMAX
|
||||
# include <windows.h>
|
||||
#endif // NL_OS_WINDOWS
|
||||
|
||||
using namespace std;
|
||||
using namespace NLMISC;
|
||||
using namespace NLNET;
|
||||
|
|
Loading…
Reference in a new issue