1 #ifndef __lib_gdi_sdl_h
2 #define __lib_gdi_sdl_h
10 class gSDLDC: public gDC
12 SDL_Surface *m_screen;
13 static gSDLDC *m_instance;
14 void exec(gOpcode *opcode);
22 static int getInstance(ePtr<gSDLDC> &ptr) { if (!m_instance) return -1; ptr = m_instance; return 0; }
23 int islocked() { return 0; }