00001 #include "OSDLUtils.h" 00002 00003 #include "SDL.h" // for SDL_GetError 00004 00005 00006 00007 using namespace OSDL::Utils ; 00008 00009 00010 using std::string ; 00011 00012 00013 const string OSDL::Utils::getBackendLastError() throw() 00014 { 00015 return SDL_GetError() ; 00016 } 00017