compiler.h

来自「小小的句法编译器 希望能对大家有帮助」· C头文件 代码 · 共 27 行

H
27
字号
///////////////////////////////////////////////////////////////
//	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
///////////////////////////////////////////////////////////////
//对话框消息处理函数
BOOL CALLBACK dlgproc(HWND,UINT,WPARAM,LPARAM);
BOOL CALLBACK abtproc(HWND,UINT,WPARAM,LPARAM);
///////////////////////////////////////////////////////////////

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?