mirror of
https://github.com/zeldaret/ss
synced 2026-06-11 05:08:16 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
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
|