mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-08 00:10:44 +01:00
Remove some internal decaf functions that snuck in.
This commit is contained in:
parent
b08f267220
commit
d58b264cab
@ -20,14 +20,6 @@ int32_t
|
|||||||
OSDynLoad_GetAllocator(OSDynLoadAllocFn *outAllocFn,
|
OSDynLoad_GetAllocator(OSDynLoadAllocFn *outAllocFn,
|
||||||
OSDynLoadFreeFn *outFreeFn);
|
OSDynLoadFreeFn *outFreeFn);
|
||||||
|
|
||||||
int32_t
|
|
||||||
OSDynLoad_MemAlloc(int32_t size,
|
|
||||||
int32_t alignment,
|
|
||||||
void **outAddr);
|
|
||||||
|
|
||||||
void
|
|
||||||
OSDynLoad_MemFree(void *addr);
|
|
||||||
|
|
||||||
int32_t
|
int32_t
|
||||||
OSDynLoad_Acquire(char const *name,
|
OSDynLoad_Acquire(char const *name,
|
||||||
OSDynLoadModule *outModule);
|
OSDynLoadModule *outModule);
|
||||||
|
@ -82,15 +82,9 @@ OSInitMutexEx(OSMutex *mutex,
|
|||||||
void
|
void
|
||||||
OSLockMutex(OSMutex *mutex);
|
OSLockMutex(OSMutex *mutex);
|
||||||
|
|
||||||
void
|
|
||||||
OSLockMutexNoLock(OSMutex *mutex);
|
|
||||||
|
|
||||||
void
|
void
|
||||||
OSUnlockMutex(OSMutex *mutex);
|
OSUnlockMutex(OSMutex *mutex);
|
||||||
|
|
||||||
void
|
|
||||||
OSUnlockMutexNoLock(OSMutex *mutex);
|
|
||||||
|
|
||||||
BOOL
|
BOOL
|
||||||
OSTryLockMutex(OSMutex *mutex);
|
OSTryLockMutex(OSMutex *mutex);
|
||||||
|
|
||||||
|
@ -55,8 +55,6 @@ EXPORT(OSFatal);
|
|||||||
// coreinit/dynload.h
|
// coreinit/dynload.h
|
||||||
EXPORT(OSDynLoad_SetAllocator);
|
EXPORT(OSDynLoad_SetAllocator);
|
||||||
EXPORT(OSDynLoad_GetAllocator);
|
EXPORT(OSDynLoad_GetAllocator);
|
||||||
EXPORT(OSDynLoad_MemAlloc);
|
|
||||||
EXPORT(OSDynLoad_MemFree);
|
|
||||||
EXPORT(OSDynLoad_Acquire);
|
EXPORT(OSDynLoad_Acquire);
|
||||||
EXPORT(OSDynLoad_FindExport);
|
EXPORT(OSDynLoad_FindExport);
|
||||||
EXPORT(OSDynLoad_Release);
|
EXPORT(OSDynLoad_Release);
|
||||||
@ -112,9 +110,7 @@ EXPORT(MEMGetAllocDirForMBlockExpHeap);
|
|||||||
EXPORT(OSInitMutex);
|
EXPORT(OSInitMutex);
|
||||||
EXPORT(OSInitMutexEx);
|
EXPORT(OSInitMutexEx);
|
||||||
EXPORT(OSLockMutex);
|
EXPORT(OSLockMutex);
|
||||||
EXPORT(OSLockMutexNoLock);
|
|
||||||
EXPORT(OSUnlockMutex);
|
EXPORT(OSUnlockMutex);
|
||||||
EXPORT(OSUnlockMutexNoLock);
|
|
||||||
EXPORT(OSTryLockMutex);
|
EXPORT(OSTryLockMutex);
|
||||||
|
|
||||||
// coreinit/rendezvous.h
|
// coreinit/rendezvous.h
|
||||||
|
Loading…
Reference in New Issue
Block a user