HomeSort by relevance Sort by last modified time
    Searched defs:pfnSDL_CurrentBeginThread (Results 1 - 5 of 5) sorted by null

  /external/qemu/distrib/sdl-1.2.15/include/
SDL_thread.h 69 typedef int (*pfnSDL_CurrentBeginThread)(void (*func)(void *), void *, unsigned, void *arg);
72 typedef uintptr_t (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_thread.h 69 typedef int (*pfnSDL_CurrentBeginThread)(void (*func)(void *), void *, unsigned, void *arg);
72 typedef uintptr_t (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_thread.h 69 typedef int (*pfnSDL_CurrentBeginThread)(void (*func)(void *), void *, unsigned, void *arg);
72 typedef uintptr_t (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_thread.h 69 typedef int (*pfnSDL_CurrentBeginThread)(void (*func)(void *), void *, unsigned, void *arg);
72 typedef uintptr_t (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
78 extern DECLSPEC SDL_Thread * SDLCALL SDL_CreateThread(int (SDLCALL *fn)(void *), void *data, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread);
  /external/qemu/distrib/sdl-1.2.15/src/thread/win32/
SDL_systhread.c 44 typedef unsigned long (__watcall *pfnSDL_CurrentBeginThread) (void *, unsigned,
49 typedef unsigned long (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
54 typedef uintptr_t (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
99 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread)
105 pfnSDL_CurrentBeginThread pfnBeginThread = NULL;
108 pfnSDL_CurrentBeginThread pfnBeginThread = _beginthreadex;

Completed in 162 milliseconds