introduce MWAPI
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit

This commit is contained in:
Nishi 2026-04-22 12:05:49 +09:00
commit 2dd2c3870f
41 changed files with 189 additions and 166 deletions

View file

@ -16,20 +16,20 @@ extern "C" {
* @param path Path
* @return Handle
*/
MWDECL void* MwDynamicOpen(const char* path);
MWDECL void* MWAPI MwDynamicOpen(const char* path);
/*!
* @brief Gets a symbol from the dynamic library
* @param handle Handle
* @param symbol Symbol
*/
MWDECL void* MwDynamicSymbol(void* handle, const char* symbol);
MWDECL void* MWAPI MwDynamicSymbol(void* handle, const char* symbol);
/*!
* @brief Closes a dynamic library
* @param handle Handle
*/
MWDECL void MwDynamicClose(void* handle);
MWDECL void MWAPI MwDynamicClose(void* handle);
#ifdef __cplusplus
}