|
Last change
on this file since 619 was 541, checked in by dai_9181, 18 years ago |
|
SynonymErrorWordsを排除。
ClearSynonymErrorWordsメソッドを追加。
|
|
File size:
1.4 KB
|
| Rev | Line | |
|---|
| [15] | 1 | #include "../BasicCompiler_Common/common.h"
|
|---|
| [12] | 2 |
|
|---|
| 3 | LPSTR BasicFileFilter="プログラム ファイル(*.ab;*.bas;*.abp;*.sbp)\0*.ab;*.bas;*.abp;*sbp\0テキスト ファイル(*.txt)\0*.txt\0すべてのファイル(*.*)\0*\0\0";
|
|---|
| 4 | LPSTR 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 | RESOURCEDATAINFO *pCursorResourceInfo;
|
|---|
| 28 | int CursorResourceNum;
|
|---|
| 29 | RESOURCEDATAINFO *pBitmapResourceInfo;
|
|---|
| 30 | int BitmapResourceNum;
|
|---|
| 31 | RESOURCEDATAINFO *pIconResourceInfo;
|
|---|
| 32 | int IconResourceNum;
|
|---|
| 33 | char szManifestPath[MAX_PATH];
|
|---|
| 34 | int XPManiResourceNum;
|
|---|
| 35 |
|
|---|
| 36 | //デバッグ
|
|---|
| 37 | BOOL bDebugSupportProc;
|
|---|
| 38 | BOOL bSystemProc;
|
|---|
| 39 | DWORD dwStepRun;
|
|---|
| 40 | double width_ratio_VarList=0.3;
|
|---|
| 41 | HWND hDebuggerToolbar;
|
|---|
| 42 | char szDebugCmdLine[1024];
|
|---|
| 43 | char szDebugExeForDll[1024];
|
|---|
| 44 |
|
|---|
| 45 | //ウォッチリスト
|
|---|
| 46 | int width_WatchColumn_Expression=200;
|
|---|
| 47 | int width_WatchColumn_Value=400;
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 | int cp;
|
|---|
| 51 |
|
|---|
| [69] | 52 | int typeOfPtrChar = MAKE_PTR_TYPE(DEF_SBYTE,1);
|
|---|
| [97] | 53 | int typeOfPtrUChar = MAKE_PTR_TYPE(DEF_BYTE,1);
|
|---|
| [12] | 54 |
|
|---|
| [15] | 55 | char *basbuf;
|
|---|
| 56 |
|
|---|
| [12] | 57 | char BasicCurDir[MAX_PATH]; //コンパイルするファイルが存在するディレクトリ
|
|---|
| 58 | char szDllName[MAX_PATH];
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.