wxhelper-new/inc/wxhelper.h
2024-06-16 13:17:24 +08:00

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