Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions inc/dmod.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ DMOD_BUILTIN_API( Dmod, 1.0, int , _RunModule, (const char* Module, int a
DMOD_BUILTIN_API( Dmod, 1.0, bool , _IsFunctionConnected, (void* FunctionPointer) );
DMOD_BUILTIN_API( Dmod, 1.0, Dmod_Context_t*, _GetNextDifModule, (const char* DifSignature, Dmod_Context_t* Previous) );
DMOD_BUILTIN_API( Dmod, 1.0, void* , _GetDifFunction, (Dmod_Context_t* Context, const char* DifSignature) );
DMOD_BUILTIN_API( Dmod, 1.0, const char*, _GetName, (Dmod_Context_t* Context) );

DMOD_BUILTIN_API( Dmod, 1.0, bool , _AddPackageBuffer, ( const void* Buffer, size_t Size, uint32_t* outIndex ) );
DMOD_BUILTIN_API( Dmod, 1.0, bool , _AddPackageFile, ( const char* FilePath, uint32_t* outIndex ) );
Expand Down
1 change: 0 additions & 1 deletion inc/dmod_system.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ extern int Dmod_Irq ( Dmod_Context_t* Context, const
extern uint64_t Dmod_GetStackSize ( Dmod_Context_t* Context );
extern Dmod_ModuleType_t Dmod_GetModuleType ( Dmod_Context_t* Context );
extern Dmod_License_t* Dmod_GetLicense ( Dmod_Context_t* Context );
extern const char* Dmod_GetName ( Dmod_Context_t* Context );
extern bool Dmod_GetFileArchitecture ( const char* FilePath, char* outArch, size_t MaxLength );

// DMF System
Expand Down
Loading