Etterna 0.74.4
Loading...
Searching...
No Matches
AppInstance.h
1#ifndef APP_INSTANCE_H
2#define APP_INSTANCE_H
3
4#include "windows.h"
5
8{
9 public:
12 HINSTANCE Get() const { return h; }
13 operator HINSTANCE() const { return h; }
14
15 private:
16 HINSTANCE h;
17};
18
19#endif
get an HINSTANCE for starting dialog boxes.
Definition AppInstance.h:8