mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-15 03:51:14 +00:00
13 lines
242 B
C
13 lines
242 B
C
#pragma once
|
|
|
|
#include <SDL2/SDL_mutex.h>
|
|
|
|
// https://wiki.libsdl.org/SDL3/README-migration#sdl_mutexh
|
|
|
|
#define SDL_Mutex SDL_mutex
|
|
|
|
#define SDL_Semaphore SDL_sem
|
|
|
|
#define SDL_WaitSemaphore SDL_SemWait
|
|
#define SDL_SignalSemaphore SDL_SemPost
|