d_dylink for the most part

This commit is contained in:
robojumper
2024-05-26 22:55:38 +02:00
parent 71f3416cb5
commit e6df362f88
10 changed files with 364 additions and 55 deletions
+11 -3
View File
@@ -3,10 +3,18 @@
#include <common.h>
namespace dDyl {
class dDynamicModuleControl {
public:
dDynamicModuleControl() {}
virtual ~dDynamicModuleControl();
bool Unlink(u16 relId);
void set(u16 *ptr, int count);
BOOL do_link() const;
BOOL do_unlink();
} // dDyl
private:
u16 *mPtr;
int mCount;
};
#endif