18#ifndef __VSF_SDL2_MUTEX_H__
19#define __VSF_SDL2_MUTEX_H__
23#include "../../vsf_sdl2_cfg.h"
25#if VSF_USE_SDL2 == ENABLED
39#if VSF_SDL_CFG_WRAPPER == ENABLED
40#define SDL_CreateMutex VSF_SDL_WRAPPER(SDL_CreateMutex)
41#define SDL_DestroyMutex VSF_SDL_WRAPPER(SDL_DestroyMutex)
42#define SDL_TryLockMutex VSF_SDL_WRAPPER(SDL_TryLockMutex)
43#define SDL_LockMutex VSF_SDL_WRAPPER(SDL_LockMutex)
44#define SDL_UnlockMutex VSF_SDL_WRAPPER(SDL_UnlockMutex)
#define SDL_TryLockMutex
Definition SDL_mutex.h:42
#define SDL_LockMutex
Definition SDL_mutex.h:43
vsf_mutex_t SDL_mutex
Definition SDL_mutex.h:49
#define SDL_CreateMutex
Definition SDL_mutex.h:40
#define SDL_DestroyMutex
Definition SDL_mutex.h:41
#define SDL_UnlockMutex
Definition SDL_mutex.h:44