mirror of
https://github.com/laomms/wxhelper.git
synced 2024-12-23 07:19:35 +08:00
14 lines
262 B
C
14 lines
262 B
C
|
|
|||
|
#ifndef WXHELPER_WXHELPER_H_
|
|||
|
#define WXHELPER_WXHELPER_H_
|
|||
|
#include <Windows.h>
|
|||
|
#include "singleton.h"
|
|||
|
namespace wxhelper {
|
|||
|
class WxHelper : public base::Singleton<WxHelper>{
|
|||
|
|
|||
|
public:
|
|||
|
void init(HMODULE module);
|
|||
|
void finally();
|
|||
|
};
|
|||
|
}
|
|||
|
#endif
|