Changeset 120

Show
Ignore:
Timestamp:
08/17/10 01:42:10 (18 months ago)
Author:
Carsten
Message:

Minor Linux-specific compilation fixes.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cafu/branches/cafu_to_wx/Ca3DE/MainCanvas.cpp

    r119 r120  
    4646#include "PlatformAux.hpp" 
    4747 
     48#ifndef _WIN32 
     49#include <dlfcn.h> 
     50#define __stdcall 
     51#define GetProcAddress dlsym 
     52#define FreeLibrary dlclose 
     53#endif 
     54 
    4855 
    4956class SvGuiCallbT : public ServerT::GuiCallbackI 
     
    559566    { 
    560567        // The main window is minimized - give other applications a chance to run. 
    561         Sleep(5); 
     568        wxMilliSleep(5); 
    562569    } 
    563570