Line | |
---|
1 | #include "../BasicCompiler_Common/common.h"
|
---|
2 |
|
---|
3 | extern const LPCSTR BasicFileFilter = "プログラム ファイル(*.ab;*.bas;*.abp;*.sbp)\0*.ab;*.bas;*.abp;*sbp\0テキスト ファイル(*.txt)\0*.txt\0すべてのファイル(*.*)\0*\0\0";
|
---|
4 | extern const LPCSTR ExeFileFilter = "実行可能ファイル(*.exe)\0*.exe\0すべてのファイル(*.*)\0*\0\0";
|
---|
5 |
|
---|
6 | HINSTANCE hInst;
|
---|
7 | HWND hOwnerEditor;
|
---|
8 | HWND hMainDlg;
|
---|
9 | HWND hDebugWnd;
|
---|
10 | HANDLE hHeap;
|
---|
11 | int ScreenX,ScreenY;
|
---|
12 | WNDPROC OldErrorListProc,OldDebugListProc;
|
---|
13 | WNDPROC OldThreadComboProc;
|
---|
14 | WNDPROC OldProcComboProc;
|
---|
15 | unsigned short TypeOfSubSystem;
|
---|
16 |
|
---|
17 | //不揮発性データ(レジストリに保存される)
|
---|
18 | CNonVolatile *pobj_nv;
|
---|
19 |
|
---|
20 | //プログラム情報
|
---|
21 | DWORD ImageBase;
|
---|
22 |
|
---|
23 | BOOL bStopCompile;
|
---|
24 |
|
---|
25 | //リソース情報
|
---|
26 | char ResourceFileName[MAX_PATH];
|
---|
27 |
|
---|
28 | //デバッグ
|
---|
29 | BOOL bDebugSupportProc;
|
---|
30 | DWORD dwStepRun;
|
---|
31 | double width_ratio_VarList=0.3;
|
---|
32 | HWND hDebuggerToolbar;
|
---|
33 | char szDebugCmdLine[1024];
|
---|
34 | char szDebugExeForDll[1024];
|
---|
35 |
|
---|
36 | //ウォッチリスト
|
---|
37 | int width_WatchColumn_Expression=200;
|
---|
38 | int width_WatchColumn_Value=400;
|
---|
39 |
|
---|
40 |
|
---|
41 | int cp;
|
---|
42 |
|
---|
43 | int typeOfPtrChar = MAKE_PTR_TYPE(DEF_SBYTE,1);
|
---|
44 | int typeOfPtrUChar = MAKE_PTR_TYPE(DEF_BYTE,1);
|
---|
45 |
|
---|
46 | char *basbuf;
|
---|
47 |
|
---|
48 | char BasicCurDir[MAX_PATH]; //コンパイルするファイルが存在するディレクトリ
|
---|
49 | char szDllName[MAX_PATH];
|
---|
Note:
See
TracBrowser
for help on using the repository browser.