-
Notifications
You must be signed in to change notification settings - Fork 1
/
rplstool.cpp
92 lines (69 loc) · 2.5 KB
/
rplstool.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// rplstool.cpp : アプリケーションのクラス動作を定義します。
//
#include "stdafx.h"
#include "rplstool.h"
#include "rplstoolDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CrplstoolApp
BEGIN_MESSAGE_MAP(CrplstoolApp, CWinAppEx)
ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
END_MESSAGE_MAP()
// CrplstoolApp コンストラクション
CrplstoolApp::CrplstoolApp()
{
// TODO: この位置に構築用コードを追加してください。
// ここに InitInstance 中の重要な初期化処理をすべて記述してください。
}
// 唯一の CrplstoolApp オブジェクトです。
CrplstoolApp theApp;
// CrplstoolApp 初期化
BOOL CrplstoolApp::InitInstance()
{
// アプリケーション マニフェストが visual スタイルを有効にするために、
// ComCtl32.dll Version 6 以降の使用を指定する場合は、
// Windows XP に InitCommonControlsEx() が必要です。さもなければ、ウィンドウ作成はすべて失敗します。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// アプリケーションで使用するすべてのコモン コントロール クラスを含めるには、
// これを設定します。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinAppEx::InitInstance();
AfxEnableControlContainer();
// 標準初期化
// これらの機能を使わずに最終的な実行可能ファイルの
// サイズを縮小したい場合は、以下から不要な初期化
// ルーチンを削除してください。
// 設定が格納されているレジストリ キーを変更します。
// TODO: 会社名または組織名などの適切な文字列に
// この文字列を変更してください。
// SetRegistryKey(_T("アプリケーション ウィザードで生成されたローカル アプリケーション"));
TCHAR fullpath[_MAX_PATH];
TCHAR drivename[_MAX_PATH];
TCHAR dirname[_MAX_PATH];
TCHAR appname[_MAX_PATH];
TCHAR inipath[_MAX_PATH];
::GetModuleFileName(NULL, fullpath, _MAX_PATH);
_tsplitpath_s(fullpath, drivename, _MAX_PATH, dirname, _MAX_PATH, appname, _MAX_PATH, NULL, 0);
_tmakepath_s(inipath, _MAX_PATH, drivename, dirname, appname, _T("ini"));
if(m_pszProfileName) free((void*)m_pszProfileName);
m_pszProfileName = _tcsdup(inipath);
CrplstoolDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: ダイアログが <OK> で消された時のコードを
// 記述してください。
}
else if (nResponse == IDCANCEL)
{
// TODO: ダイアログが <キャンセル> で消された時のコードを
// 記述してください。
}
// ダイアログは閉じられました。アプリケーションのメッセージ ポンプを開始しないで
// アプリケーションを終了するために FALSE を返してください。
return FALSE;
}