⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 winapp.h

📁 这个主要是词法分析器
💻 H
字号:
/*
	词法分析外壳程序 0.35 (2003.10.15) [声明文件]
	作者:Dwing

	Old version:
	0.1:Only 2 windows (input & output).
	0.2:Add 1 window (errput & infoput).
	0.3:Add fileopen & filesave.
	0.35:Add Keywords/... List.
*/
#pragma once
#pragma comment(linker, "/OPT:NOWIN98")
#pragma comment(linker, "/SECTION:.DWING,")
#pragma comment(linker, "/MERGE:.text=.DWING")
#pragma comment(linker, "/MERGE:.rdata=.DWING")
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif

#include <windows.h>	//For All
#include <commdlg.h>	//For OPEN&SAVEFILE Dialog
#include <stdio.h>		//For Operate File
#include "resource.h"	//For Main Dialog & Menu
#include "zCompile.h"

extern "C" char* errtxt[];
extern "C" char* keytxt[];
extern "C" char  opatxt[];
extern "C" char* opbtxt[];
extern "C" char  eoptxt[];
//对话框消息处理函数
BOOL CALLBACK dlgproc(HWND hdlg,UINT msg,WPARAM wparam,LPARAM lparam);
BOOL CALLBACK abtproc(HWND,UINT,WPARAM,LPARAM);

⌨️ 快捷键说明

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