use unix2dos to undo what windows did
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
IoIxD 2026-07-16 15:44:09 -07:00
commit 8c1c9228b7
375 changed files with 203503 additions and 203503 deletions

View file

@ -1,38 +1,38 @@
/*!
* @file Mw/Abstract/Dynamic.h
* @brief Dynamic library
*/
#ifndef __MW_ABSTRACT_DYNAMIC_H__
#define __MW_ABSTRACT_DYNAMIC_H__
#include <Mw/MachDep.h>
#ifdef __cplusplus
extern "C" {
#endif
/*!
* @brief Opens a dynamic library
* @param path Path
* @return Handle
*/
MWDECL void* MWAPI MwDynamicOpen(const char* path);
/*!
* @brief Gets a symbol from the dynamic library
* @param handle Handle
* @param symbol Symbol
*/
MWDECL void* MWAPI MwDynamicSymbol(void* handle, const char* symbol);
/*!
* @brief Closes a dynamic library
* @param handle Handle
*/
MWDECL void MWAPI MwDynamicClose(void* handle);
#ifdef __cplusplus
}
#endif
#endif
/*!
* @file Mw/Abstract/Dynamic.h
* @brief Dynamic library
*/
#ifndef __MW_ABSTRACT_DYNAMIC_H__
#define __MW_ABSTRACT_DYNAMIC_H__
#include <Mw/MachDep.h>
#ifdef __cplusplus
extern "C" {
#endif
/*!
* @brief Opens a dynamic library
* @param path Path
* @return Handle
*/
MWDECL void* MWAPI MwDynamicOpen(const char* path);
/*!
* @brief Gets a symbol from the dynamic library
* @param handle Handle
* @param symbol Symbol
*/
MWDECL void* MWAPI MwDynamicSymbol(void* handle, const char* symbol);
/*!
* @brief Closes a dynamic library
* @param handle Handle
*/
MWDECL void MWAPI MwDynamicClose(void* handle);
#ifdef __cplusplus
}
#endif
#endif