Merge pull request #79 from Maschell/feature_coreinit_dynload

Add OSDynLoad_GetModuleName
This commit is contained in:
James 2018-07-01 08:12:35 -07:00 committed by GitHub
commit b42c431604
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,6 +103,16 @@ OSDynLoad_Error
OSDynLoad_GetTLSAllocator(OSDynLoadAllocFn *outAllocFn,
OSDynLoadFreeFn *outFreeFn);
/**
* Gets the name for a given module handle.
* Using the value "-1" as module handle gets the name of the running main rpl
**/
OSDynLoad_Error
OSDynLoad_GetModuleName(OSDynLoad_Module module,
char * nameBuf,
int32_t * nameBufSize);
/**
* The prototype for an RPL entry point.
*