2012-12-19 09:30:18 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* *
|
2015-11-10 05:21:49 +00:00
|
|
|
* Project64 - A Nintendo 64 emulator. *
|
2012-12-19 09:30:18 +00:00
|
|
|
* http://www.pj64-emu.com/ *
|
|
|
|
* Copyright (C) 2012 Project64. All rights reserved. *
|
|
|
|
* *
|
|
|
|
* License: *
|
|
|
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
2008-09-18 03:15:49 +00:00
|
|
|
#pragma once
|
|
|
|
//#define _WIN32_WINNT 0x0500
|
|
|
|
|
2015-01-27 05:07:44 +00:00
|
|
|
#define _ATL_DISABLE_NOTHROW_NEW
|
|
|
|
#include <shellapi.h>
|
2008-09-18 03:15:49 +00:00
|
|
|
#include <atlbase.h>
|
2015-01-27 05:07:44 +00:00
|
|
|
|
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable : 4996) // warning C4996: 'GetVersionExA': was declared deprecated
|
|
|
|
#include <wtl/atlapp.h>
|
|
|
|
#pragma warning(pop)
|
2008-09-18 03:15:49 +00:00
|
|
|
|
|
|
|
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>
|
|
|
|
|
2015-12-04 06:49:31 +00:00
|
|
|
#include <Common/StdString.h>
|
|
|
|
|
|
|
|
#include "UserInterface/resource.h"
|
|
|
|
#include "UserInterface/WTLControls/numberctrl.h"
|
|
|
|
#include "UserInterface/WTLControls/ClistCtrl/ListCtrl.h"
|
|
|
|
#include "UserInterface/WTLControls/ModifiedComboBox.h"
|
|
|
|
#include "UserInterface/WTLControls/PartialGroupBox.h"
|
|
|
|
#include "UserInterface/WTLControls/ModifiedEditBox.h"
|
|
|
|
#include "UserInterface/WTLControls/ModifiedCheckBox.h"
|