Interopérabilité d'un include
This commit is contained in:
parent
317ae97216
commit
f52c54177e
|
@ -1,5 +1,4 @@
|
||||||
#include <boost/filesystem.hpp>
|
#include <boost/filesystem.hpp>
|
||||||
#include <arpa/inet.h>
|
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include "manager.hpp"
|
#include "manager.hpp"
|
||||||
|
@ -13,6 +12,12 @@
|
||||||
#include "objects/kill_block.hpp"
|
#include "objects/kill_block.hpp"
|
||||||
#include "states/level.hpp"
|
#include "states/level.hpp"
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
#include <winsock2.h>
|
||||||
|
#else
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Définition des variables et fonctions globales internes
|
* Définition des variables et fonctions globales internes
|
||||||
* (accessibles uniquement dans ce fichier)
|
* (accessibles uniquement dans ce fichier)
|
||||||
|
|
Loading…
Reference in New Issue