Remove imports which don't exist in elf2rpl's target coreinit.rpl version

This commit is contained in:
shinyquagsire23 2016-07-16 17:27:41 -07:00
parent 4eed903b0a
commit 631d88a4c3
4 changed files with 0 additions and 37 deletions

View File

@ -30,21 +30,12 @@ typedef enum MEMExpHeapDirection
MEM_EXP_HEAP_DIR_FROM_BOTTOM = 1, MEM_EXP_HEAP_DIR_FROM_BOTTOM = 1,
} MEMExpHeapDirection; } MEMExpHeapDirection;
MEMExpandedHeap *
MEMCreateExpHeap(MEMExpandedHeap *heap, uint32_t size);
MEMExpandedHeap * MEMExpandedHeap *
MEMCreateExpHeapEx(MEMExpandedHeap *heap, uint32_t size, uint16_t flags); MEMCreateExpHeapEx(MEMExpandedHeap *heap, uint32_t size, uint16_t flags);
MEMExpandedHeap * MEMExpandedHeap *
MEMDestroyExpHeap(MEMExpandedHeap *heap); MEMDestroyExpHeap(MEMExpandedHeap *heap);
void
MEMiDumpExpHeap(MEMExpandedHeap *heap);
void *
MEMAllocFromExpHeap(MEMExpandedHeap *heap, uint32_t size);
void * void *
MEMAllocFromExpHeapEx(MEMExpandedHeap *heap, uint32_t size, int alignment); MEMAllocFromExpHeapEx(MEMExpandedHeap *heap, uint32_t size, int alignment);
@ -66,9 +57,6 @@ MEMResizeForMBlockExpHeap(MEMExpandedHeap *heap, uint8_t *address, uint32_t size
uint32_t uint32_t
MEMGetTotalFreeSizeForExpHeap(MEMExpandedHeap *heap); MEMGetTotalFreeSizeForExpHeap(MEMExpandedHeap *heap);
uint32_t
MEMGetAllocatableSizeForExpHeap(MEMExpandedHeap *heap);
uint32_t uint32_t
MEMGetAllocatableSizeForExpHeapEx(MEMExpandedHeap *heap, int alignment); MEMGetAllocatableSizeForExpHeapEx(MEMExpandedHeap *heap, int alignment);

View File

@ -24,10 +24,6 @@ struct MEMFrameHeap
}; };
UNKNOWN_SIZE(MEMFrameHeap); UNKNOWN_SIZE(MEMFrameHeap);
MEMFrameHeap *
MEMCreateFrmHeap(MEMFrameHeap *heap,
uint32_t size);
MEMFrameHeap * MEMFrameHeap *
MEMCreateFrmHeapEx(MEMFrameHeap *heap, MEMCreateFrmHeapEx(MEMFrameHeap *heap,
uint32_t size, uint32_t size,
@ -36,10 +32,6 @@ MEMCreateFrmHeapEx(MEMFrameHeap *heap,
void * void *
MEMDestroyFrmHeap(MEMFrameHeap *heap); MEMDestroyFrmHeap(MEMFrameHeap *heap);
void *
MEMAllocFromFrmHeap(MEMFrameHeap *heap,
uint32_t size);
void * void *
MEMAllocFromFrmHeapEx(MEMFrameHeap *heap, MEMAllocFromFrmHeapEx(MEMFrameHeap *heap,
uint32_t size, uint32_t size,
@ -65,9 +57,6 @@ MEMResizeForMBlockFrmHeap(MEMFrameHeap *heap,
uint32_t addr, uint32_t addr,
uint32_t size); uint32_t size);
uint32_t
MEMGetAllocatableSizeForFrmHeap(MEMFrameHeap *heap);
uint32_t uint32_t
MEMGetAllocatableSizeForFrmHeapEx(MEMFrameHeap *heap, MEMGetAllocatableSizeForFrmHeapEx(MEMFrameHeap *heap,
int alignment); int alignment);

View File

@ -69,11 +69,6 @@ OSSendMessage(OSMessageQueue *queue,
OSMessage *message, OSMessage *message,
OSMessageFlags flags); OSMessageFlags flags);
BOOL
OSJamMessage(OSMessageQueue *queue,
OSMessage *message,
OSMessageFlags flags);
BOOL BOOL
OSReceiveMessage(OSMessageQueue *queue, OSReceiveMessage(OSMessageQueue *queue,
OSMessage *message, OSMessage *message,

View File

@ -88,11 +88,8 @@ EXPORT(exit);
EXPORT(_Exit); EXPORT(_Exit);
// coreinit/expandedheap.h // coreinit/expandedheap.h
EXPORT(MEMCreateExpHeap);
EXPORT(MEMCreateExpHeapEx); EXPORT(MEMCreateExpHeapEx);
EXPORT(MEMDestroyExpHeap); EXPORT(MEMDestroyExpHeap);
EXPORT(MEMiDumpExpHeap);
EXPORT(MEMAllocFromExpHeap);
EXPORT(MEMAllocFromExpHeapEx); EXPORT(MEMAllocFromExpHeapEx);
EXPORT(MEMFreeToExpHeap); EXPORT(MEMFreeToExpHeap);
EXPORT(MEMSetAllocModeForExpHeap); EXPORT(MEMSetAllocModeForExpHeap);
@ -100,7 +97,6 @@ EXPORT(MEMGetAllocModeForExpHeap);
EXPORT(MEMAdjustExpHeap); EXPORT(MEMAdjustExpHeap);
EXPORT(MEMResizeForMBlockExpHeap); EXPORT(MEMResizeForMBlockExpHeap);
EXPORT(MEMGetTotalFreeSizeForExpHeap); EXPORT(MEMGetTotalFreeSizeForExpHeap);
EXPORT(MEMGetAllocatableSizeForExpHeap);
EXPORT(MEMGetAllocatableSizeForExpHeapEx); EXPORT(MEMGetAllocatableSizeForExpHeapEx);
EXPORT(MEMSetGroupIDForExpHeap); EXPORT(MEMSetGroupIDForExpHeap);
EXPORT(MEMGetGroupIDForExpHeap); EXPORT(MEMGetGroupIDForExpHeap);
@ -157,17 +153,14 @@ EXPORT(FSGetVolumeState);
EXPORT(FSGetLastErrorCodeForViewer); EXPORT(FSGetLastErrorCodeForViewer);
// coreinit/frameheap.h // coreinit/frameheap.h
EXPORT(MEMCreateFrmHeap);
EXPORT(MEMCreateFrmHeapEx); EXPORT(MEMCreateFrmHeapEx);
EXPORT(MEMDestroyFrmHeap); EXPORT(MEMDestroyFrmHeap);
EXPORT(MEMAllocFromFrmHeap);
EXPORT(MEMAllocFromFrmHeapEx); EXPORT(MEMAllocFromFrmHeapEx);
EXPORT(MEMFreeToFrmHeap); EXPORT(MEMFreeToFrmHeap);
EXPORT(MEMRecordStateForFrmHeap); EXPORT(MEMRecordStateForFrmHeap);
EXPORT(MEMFreeByStateToFrmHeap); EXPORT(MEMFreeByStateToFrmHeap);
EXPORT(MEMAdjustFrmHeap); EXPORT(MEMAdjustFrmHeap);
EXPORT(MEMResizeForMBlockFrmHeap); EXPORT(MEMResizeForMBlockFrmHeap);
EXPORT(MEMGetAllocatableSizeForFrmHeap);
EXPORT(MEMGetAllocatableSizeForFrmHeapEx); EXPORT(MEMGetAllocatableSizeForFrmHeapEx);
// coreinit/memlist.h // coreinit/memlist.h
@ -188,7 +181,6 @@ EXPORT(OSBlockSet);
EXPORT(OSInitMessageQueue); EXPORT(OSInitMessageQueue);
EXPORT(OSInitMessageQueueEx); EXPORT(OSInitMessageQueueEx);
EXPORT(OSSendMessage); EXPORT(OSSendMessage);
EXPORT(OSJamMessage);
EXPORT(OSReceiveMessage); EXPORT(OSReceiveMessage);
EXPORT(OSPeekMessage); EXPORT(OSPeekMessage);
EXPORT(OSGetSystemMessageQueue); EXPORT(OSGetSystemMessageQueue);
@ -303,6 +295,5 @@ EXPORT(MEMCreateUnitHeapEx);
EXPORT(MEMDestroyUnitHeap); EXPORT(MEMDestroyUnitHeap);
EXPORT(MEMAllocFromUnitHeap); EXPORT(MEMAllocFromUnitHeap);
EXPORT(MEMFreeToUnitHeap); EXPORT(MEMFreeToUnitHeap);
EXPORT(MEMiDumpUnitHeap);
EXPORT(MEMCountFreeBlockForUnitHeap); EXPORT(MEMCountFreeBlockForUnitHeap);
EXPORT(MEMCalcHeapSizeForUnitHeap); EXPORT(MEMCalcHeapSizeForUnitHeap);