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.12/include/
SDL_thread.h 68 typedef int (*pfnSDL_CurrentBeginThread)(void (*func)(void *), void *, unsigned, void *arg);
71 typedef unsigned long (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
76 typedef uintptr_t (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
82 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 68 typedef int (*pfnSDL_CurrentBeginThread)(void (*func)(void *), void *, unsigned, void *arg);
71 typedef unsigned long (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
76 typedef uintptr_t (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
82 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 68 typedef int (*pfnSDL_CurrentBeginThread)(void (*func)(void *), void *, unsigned, void *arg);
71 typedef unsigned long (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
76 typedef uintptr_t (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
82 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 68 typedef int (*pfnSDL_CurrentBeginThread)(void (*func)(void *), void *, unsigned, void *arg);
71 typedef unsigned long (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
76 typedef uintptr_t (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
82 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.12/src/thread/win32/
SDL_systhread.c 40 typedef unsigned long (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
49 typedef unsigned long (__watcall *pfnSDL_CurrentBeginThread) (void *, unsigned,
54 typedef uintptr_t (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned,
89 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread)
95 pfnSDL_CurrentBeginThread pfnBeginThread = NULL;
98 pfnSDL_CurrentBeginThread pfnBeginThread = _beginthreadex;

Completed in 2121 milliseconds