📄 compiler.h
字号:
///////////////////////////////////////////////////////////////
// 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
#include "zsyntax.h" //For Shell
///////////////////////////////////////////////////////////////
//对话框消息处理函数
BOOL CALLBACK dlgproc(HWND,UINT,WPARAM,LPARAM);
BOOL CALLBACK abtproc(HWND,UINT,WPARAM,LPARAM);
BOOL CALLBACK inputproc(HWND,UINT,WPARAM,LPARAM);
BOOL CALLBACK synproc(HWND,UINT,WPARAM,LPARAM);
void printout(char *b); //For Output
///////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -