?? compiler.h
字號(hào):
///////////////////////////////////////////////////////////////
// PL/0 Compiler Shell 0.14 (2003.12.30) [Head File]
// Author:Dwing
//
// History Version:
// 1.0 The First version.
// 1.1 Add Interpreter, fix some bugs.
// 1.2 Rebuild About-DialogBox, fix a few bugs.
// 1.3 Fix a few bugs.
// 1.4 Fix a bug and add some notes.
///////////////////////////////////////////////////////////////
#pragma once
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN //NO MFC!!!
#endif
///////////////////////////////////////////////////////////////
#include<windows.h> //For GUI Shell
#include<commdlg.h> //For OPENFILE Dialog
#include<stdio.h> //For Operate File
#include"resource.h" //For Main Dialog & Menu
#include"zCompile.h" //For Core Class
///////////////////////////////////////////////////////////////
//對(duì)話框消息處理函數(shù)
BOOL CALLBACK dlgproc(HWND,UINT,WPARAM,LPARAM);
BOOL CALLBACK abtproc(HWND,UINT,WPARAM,LPARAM);
///////////////////////////////////////////////////////////////
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -