39 lines
673 B
C
39 lines
673 B
C
|
#pragma once
|
||
|
//#define _WIN32_WINNT 0x0500
|
||
|
|
||
|
#include <atlbase.h>
|
||
|
#include <wtl/atlapp.h>
|
||
|
|
||
|
class CPj64Module :
|
||
|
public CAppModule
|
||
|
{
|
||
|
public:
|
||
|
CPj64Module(void)
|
||
|
{
|
||
|
Init(NULL, GetModuleHandle(NULL));
|
||
|
}
|
||
|
virtual ~CPj64Module(void)
|
||
|
{
|
||
|
Term();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
|
||
|
extern CPj64Module _Module;
|
||
|
|
||
|
#define _WTL_NO_CSTRING
|
||
|
|
||
|
#include <atlwin.h>
|
||
|
#include <wtl/atlmisc.h>
|
||
|
#include <wtl/atlcrack.h>
|
||
|
|
||
|
#include <wtl/atlframe.h>
|
||
|
#include <wtl/atlctrls.h>
|
||
|
#include <wtl/atldlgs.h>
|
||
|
|
||
|
#include <Common/std string.h>
|
||
|
|
||
|
#include "User Interface/resource.h"
|
||
|
#include "User Interface/WTL Controls/numberctrl.h"
|
||
|
#include "User Interface/WTL Controls/ClistCtrl/ListCtrl.h"
|