소스 검색

Remove old mutex macros

Sam Lantinga 3 년 전
부모
커밋
170c410d35
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      include/SDL3/SDL_mutex.h

+ 0 - 2
include/SDL3/SDL_mutex.h

@@ -172,7 +172,6 @@ extern DECLSPEC SDL_mutex *SDLCALL SDL_CreateMutex(void);
  * \since This function is available since SDL 3.0.0.
  */
 extern DECLSPEC int SDLCALL SDL_LockMutex(SDL_mutex * mutex) SDL_ACQUIRE(mutex);
-#define SDL_mutexP(m)   SDL_LockMutex(m)
 
 /**
  * Try to lock a mutex without blocking.
@@ -213,7 +212,6 @@ extern DECLSPEC int SDLCALL SDL_TryLockMutex(SDL_mutex * mutex) SDL_TRY_ACQUIRE(
  * \since This function is available since SDL 3.0.0.
  */
 extern DECLSPEC int SDLCALL SDL_UnlockMutex(SDL_mutex * mutex) SDL_RELEASE(mutex);
-#define SDL_mutexV(m)   SDL_UnlockMutex(m)
 
 /**
  * Destroy a mutex created with SDL_CreateMutex().