Changeset 1439 for trunk/src/platform/nacl/nacl_instance.h
- Timestamp:
- Jun 4, 2012, 7:18:45 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/platform/nacl/nacl_instance.h
r1435 r1439 6 6 #define EXAMPLES_TUMBLER_TUMBLER_H_ 7 7 8 #include <pthread.h>9 #include <map>10 #include <vector>11 12 8 #include <ppapi/cpp/instance.h> 9 #include <ppapi/c/ppb_gamepad.h> 13 10 14 11 #include "platform/nacl/opengl_context.h" 15 12 #include "platform/nacl/opengl_context_ptrs.h" 13 14 #include "input/input.h" 16 15 17 16 namespace lol { … … 48 47 49 48 private: 49 static void TickCallback(void* data, int32_t result); 50 50 51 static void CallIntMainWrappers(int argc, char const* argn[]); 51 52 static void CallVoidMainWrappers(int argc, char const* argn[]); 53 54 static void RunMain(uint32_t argc, const char* argn[], const char* argv[]); 55 56 /* Gamepad support */ 57 PPB_Gamepad const *m_pad_interface; 58 Array<Stick *> m_sticks; 52 59 }; 53 60
Note: See TracChangeset
for help on using the changeset viewer.