mirror of
https://github.com/zeldaret/ss
synced 2026-06-07 03:48:09 -04:00
21 lines
303 B
C++
21 lines
303 B
C++
#ifndef D_DYLINK_H
|
|
#define D_DYLINK_H
|
|
|
|
#include <common.h>
|
|
|
|
class dDynamicModuleControl {
|
|
public:
|
|
dDynamicModuleControl() {}
|
|
virtual ~dDynamicModuleControl();
|
|
|
|
void set(u16 *ptr, int count);
|
|
BOOL do_link() const;
|
|
BOOL do_unlink();
|
|
|
|
private:
|
|
u16 *mPtr;
|
|
int mCount;
|
|
};
|
|
|
|
#endif
|