19 lines
261 B
C
19 lines
261 B
C
|
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
#include "module.h"
|
||
|
|
||
|
namespace acio {
|
||
|
|
||
|
// globals
|
||
|
extern HINSTANCE DLL_INSTANCE;
|
||
|
extern std::vector<acio::ACIOModule *> MODULES;
|
||
|
|
||
|
void attach();
|
||
|
void attach_icca();
|
||
|
void detach();
|
||
|
}
|