Files
ss/include/d/d_dylink.h
T
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

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