Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 28, 2008, 1:15:26 AM (16 years ago)
Author:
rgrieder
Message:
  • "windows.h" —> "winbase.h" in Sleep.h. This causes less trouble with winsocks.h and winsocks2.h with enet.
  • adjusted import macros with OgreCEGUIRenderer to use our system partially.
  • moved XMLIncludes.h from util to core because we don't link util against tinyxml. So it would pretty awkward to have an tinyxml include there after all.
Location:
code/trunk/src/orxonox
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/OrxonoxStableHeaders.h

    r1810 r1841  
    7979#include "util/String.h"
    8080#include "util/SubString.h"
    81 #include "util/XMLIncludes.h"
    8281
    8382#include "core/BaseObject.h"
     
    8786#include "core/CommandExecutor.h"
    8887#include "core/Executor.h"
     88#include "core/XMLIncludes.h"
    8989#include "core/XMLPort.h"
    9090
  • code/trunk/src/orxonox/gui/OgreCEGUIRenderer.h

    r1784 r1841  
    3838#include <OgreTextureUnitState.h>
    3939
    40 #if (OGRE_PLATFORM == OGRE_PLATFORM_WIN32) && !defined(OGRE_STATIC_LIB)
    41 #   ifdef OGRE_GUIRENDERER_EXPORTS
     40/** CHANGES MADE BY ORXONOX TO FIT DLL IMPORT/EXPORT **/
     41#if (OGRE_PLATFORM == OGRE_PLATFORM_WIN32) && !(defined(ORXONOX_STATIC_BUILD) || defined(ORXONOX_NO_EXPORTS))
     42#   ifdef ORXONOX_SHARED_BUILD
    4243#       define OGRE_GUIRENDERER_API __declspec(dllexport)
    4344#   else
  • code/trunk/src/orxonox/objects/WorldEntity.h

    r1755 r1841  
    3535#include <OgreSceneNode.h>
    3636#include "util/Math.h"
    37 #include "util/XMLIncludes.h"
    3837#include "network/Synchronisable.h"
     38#include "core/XMLIncludes.h"
    3939#include "core/BaseObject.h"
    4040#include "Tickable.h"
    41 #include "../tools/Mesh.h"
     41#include "tools/Mesh.h"
    4242
    4343namespace orxonox
Note: See TracChangeset for help on using the changeset viewer.