This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ヘッダファイルのインクルード | |
| // 既定のヘッダファイル | |
| #include <windows.h> // 標準WindowsAPI | |
| #include <tchar.h> // TCHAR型 | |
| // 関数のプロトタイプ宣言 | |
| LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); // ウィンドウメッセージに対して独自の処理をするように定義したコールバック関数WindowProc. | |
| // _tWinMain関数の定義 | |
| int WINAPI _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nShowCmd){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ヘッダのインクルード | |
| // 既定のヘッダ | |
| #include <windows.h> // 標準WindowsAPI | |
| #include <stdio.h> // C標準入出力 | |
| #include <commctrl.h> // コモンコントロール | |
| // 独自のヘッダ | |
| #include "MainWindow.h" // CMainWindow | |
| #include "resource.h" | |
| // ウィンドウクラス登録関数RegisterClass. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ヘッダファイルのインクルード | |
| // 既定のヘッダファイル | |
| #include <windows.h> // 標準WindowsAPI | |
| #include <windowsx.h> // マクロ | |
| #include <tchar.h> // TCHAR型 | |
| #include <stdio.h> // 標準入出力 | |
| #include <commctrl.h> // コモンコントロール | |
| // 独自のヘッダファイル | |
| #include "resource.h" // リソースID |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ヘッダファイルのインクルード | |
| // 既定のヘッダファイル | |
| #include <windows.h> // 標準WindowsAPI | |
| #include <windowsx.h> // マクロ | |
| #include <tchar.h> // TCHAR型 | |
| #include <stdio.h> // 標準入出力 | |
| #include <commctrl.h> // コモンコントロール | |
| // 独自のヘッダファイル | |
| #include "resource.h" // リソースID |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 二重インクルード防止 | |
| #ifndef __HANDLER_CONDITIONS_H__ | |
| #define __HANDLER_CONDITIONS_H__ | |
| // ヘッダのインクルード | |
| // 既定のヘッダ | |
| #include <tchar.h> // TCHAR型 | |
| #include <windows.h> // 標準WindowsAPI | |
| // 独自のヘッダ | |
| #include "Window.h" // CWindow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ヘッダファイルのインクルード | |
| // 既定のヘッダファイル | |
| #include <windows.h> // 標準WindowsAPI | |
| #include <windowsx.h> // マクロ | |
| #include <tchar.h> // TCHAR型 | |
| #include <stdio.h> // 標準入出力 | |
| #include <commctrl.h> // コモンコントロール | |
| // 独自のヘッダファイル | |
| #include "resource.h" // リソースID |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ヘッダファイルのインクルード | |
| // 既定のヘッダファイル | |
| #include <windows.h> // 標準WindowsAPI | |
| #include <windowsx.h> // マクロ | |
| #include <tchar.h> // TCHAR型 | |
| #include <stdio.h> // 標準入出力 | |
| #include <commctrl.h> // コモンコントロール | |
| // 独自のヘッダファイル | |
| #include "resource.h" // リソースID |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ヘッダファイルのインクルード | |
| // 既定のヘッダファイル | |
| #include <windows.h> // 標準WindowsAPI | |
| #include <windowsx.h> // マクロ | |
| #include <tchar.h> // TCHAR型 | |
| #include <stdio.h> // 標準入出力 | |
| #include <commctrl.h> // コモンコントロール | |
| // 独自のヘッダファイル | |
| #include "resource.h" // リソースID |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ヘッダファイルのインクルード | |
| // 既定のヘッダファイル | |
| #include <windows.h> // 標準WindowsAPI | |
| #include <windowsx.h> // マクロ | |
| #include <tchar.h> // TCHAR型 | |
| #include <stdio.h> // 標準入出力 | |
| #include <commctrl.h> // コモンコントロール | |
| // 独自のヘッダファイル | |
| #include "resource.h" // リソースID |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ヘッダのインクルード | |
| // 既定のヘッダ | |
| #include <windows.h> // 標準WindowsAPI | |
| #include <stdio.h> // C標準入出力 | |
| #include <commctrl.h> // コモンコントロール | |
| // 独自のヘッダ | |
| #include "MainWindow.h" // CMainWindow | |
| #include "FileDialog.h" // CFileDialog | |
| #include "CustomEdit.h" // CCustomEdit | |
| //#include "EncodingComboBox.h" // CEncodingComboBox |
NewerOlder