亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? htapp.h

?? 功能較全面的反匯編器:反匯編器ht-2.0.15.tar.gz
?? H
字號(hào):
/* *	HT Editor *	htapp.h * *	Copyright (C) 1999-2002 Stefan Weyergraf * *	This program is free software; you can redistribute it and/or modify *	it under the terms of the GNU General Public License version 2 as *	published by the Free Software Foundation. * *	This program is distributed in the hope that it will be useful, *	but WITHOUT ANY WARRANTY; without even the implied warranty of *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *	GNU General Public License for more details. * *	You should have received a copy of the GNU General Public License *	along with this program; if not, write to the Free Software *	Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */#ifndef __HTAPP_H__#define __HTAPP_H__#include "htctrl.h"#include "htdialog.h"#include "htformat.h"// file open modes#define FOM_AUTO				0#define FOM_BIN					1#define FOM_TEXT				2//#define VIEWERGROUP_NAME			"viewergroup"/* *	CLASS ht_status */#define STATUS_DEFAULT_FORMAT "%a %L %t %d"#define STATUS_ESCAPE '%'#define STATUS_ANALY_ACTIVE 'a'#define STATUS_ANALY_LINES 'L'#define STATUS_TIME 't'#define STATUS_DATE 'd'#define STATUS_WORKBUFLEN 80/* *	CLASS ht_status */class ht_status: public ht_view {protected:	int		idle_count;	char		*format;	char		workbuf[STATUS_WORKBUFLEN];	int		clear_len;	int		analy_ani;public:		void init(Bounds *b);	virtual	void done();	virtual	void draw();	virtual	void handlemsg(htmsg *msg);	virtual	bool idle();	virtual void getminbounds(int *width, int *height);private:		void render();	virtual	const char *defaultpalette();};/* *	CLASS ht_keyline */class ht_keyline: public ht_view {public:		void init(Bounds *b);	virtual	void done();	/* overwritten */	virtual	void draw();	virtual	const char *defaultpalette();	virtual void getminbounds(int *width, int *height);};/* *	CLASS ht_desktop */class ht_desktop: public ht_view {public:		void init(Bounds *b);	/* overwritten */	virtual	void draw();	virtual	const char *defaultpalette();};/* *	CLASS ht_logviewer */class ht_log_msg: public Object {public:	vcp color;	char *msg;	ht_log_msg(vcp Color, char *Msg);	~ht_log_msg();};typedef unsigned int LogColor;class ht_log: public Array {protected:	uint maxlinecount;	void deletefirstline();	void	insertline(LogColor c, char *line);public:	ht_log();/* new */	void log(LogColor c, char *line);};class ht_logviewer: public ht_viewer {private:	ht_log *lines;	bool own_lines;	int ofs, xofs;	ht_window *window;	/* new */	int cursor_up(int n);	int cursor_down(int n);	bool get_vscrollbar_pos(int *pstart, int *psize);	void update();public:		void init(Bounds *b, ht_window *window, ht_log *log, bool own_log);	virtual	void done();	/* overwritten */	virtual	void draw();	virtual	void handlemsg(htmsg *msg);};/* *	CLASS ht_vstate_history_entry */class ht_vstate_history_entry: public Object {public:	Object *data;	ht_view *view;	ht_vstate_history_entry(Object *data, ht_view *view);	~ht_vstate_history_entry();};/* *	CLASS ht_file_window */class ht_file_window: public ht_window {protected:	Array vstate_history;	int vstate_history_pos;			void add_vstate_history(ht_vstate_history_entry *e);public:	File	*file;		ht_file_window();				void init(Bounds *b, const char *desc, uint framestyle, uint number, File *file);	virtual	void done();	/* overwritten */	virtual	void handlemsg(htmsg *msg);};/* *	CLASS ht_project */class ht_project: public AVLTree {protected:	char *filename;public:	explicit ht_project(const char *filename);		ht_project(BuildCtorArg &a): AVLTree(a) {};	virtual ~ht_project();/* overwritten */	virtual void load(ObjectStream &s);	virtual ObjectID getObjectID() const;	virtual void store(ObjectStream &s) const;/* new */		const char *get_filename();};/* *	CLASS ht_project_item */class ht_project_item: public Object {protected:	char *filename;	char *path;public:		ht_project_item(const char *filename, const char *path);		ht_project_item(BuildCtorArg &a): Object(a) {};	virtual ~ht_project_item();/* overwritten */	virtual void load(ObjectStream &s);	virtual ObjectID getObjectID() const;	virtual void store(ObjectStream &s) const;	virtual int compareTo(const Object *) const;/* new */	const char *get_filename() const;	const char *get_path() const;};/* *	CLASS ht_project_listbox */class ht_project_listbox: public ht_listbox {protected:	ht_project *project;	uint colwidths[4];	public:		void	init(Bounds *b, ht_project *project);				virtual	int	calcCount();	virtual	void	draw();	virtual	void *	getFirst();	virtual	void *	getLast();	virtual	void *	getNext(void *entry);	virtual	void *	getPrev(void *entry);	virtual	const char *getStr(int col, void *entry);	virtual	void	handlemsg(htmsg *msg);	virtual	int	numColumns();	virtual	void *	quickfind(const char *s);	virtual	char *	quickfindCompletition(const char *s);	virtual	bool	selectEntry(void *entry);/* new */		const char *func(uint i, bool execute);		void	set_project(ht_project *project);};/* *	CLASS ht_project_window */class ht_project_window: public ht_window {protected:	ht_project **project;	ht_project_listbox *plb;	char wtitle[128];public:		void init(Bounds *b, const char *desc, uint framestyle, uint number, ht_project **project);	virtual	void done();/* overwritten */	virtual	void handlemsg(htmsg *msg);};/* *	CLASS ht_app_window_entry */#define AWT_LOG		0#define AWT_CLIPBOARD	1#define AWT_HELP	2#define AWT_FILE	3#define AWT_OFM		4#define AWT_PROJECT	5#define AWT_TERM	6class ht_app_window_entry: public Object {public:	uint type;	ht_window *window;	bool minimized;	uint number;	bool isfile;	FileLayer *layer;	ht_app_window_entry(ht_window *window, uint number, uint type, bool minimized, bool isfile, FileLayer *layer);	virtual int compareTo(const Object *) const;};/* *	CLASS ht_app */class ht_app: public ht_dialog {protected:	Container *windows;	Container *syntax_lexers;	ht_keyline *keyline;	ht_desktop *desktop;	ht_group *battlefield;		bool exit_program;/* new */			ht_window *create_window_file_bin(Bounds *b, FileLayer *file, const char *title, bool isfile);			ht_window *create_window_file_text(Bounds *b, FileLayer *file, const char *title, bool isfile);						bool accept_close_all_windows();			uint find_free_window_number();						uint get_window_number(ht_window *window);			ObjHandle get_window_listindex(ht_window *window);			void get_stdbounds_file(Bounds *b);			void get_stdbounds_tool(Bounds *b);						int popup_view_list_dump(ht_view *view, ht_text_listbox *listbox, List *structure, int depth, int *currenti, ht_view *currentv);/* overwritten */	virtual	const char *defaultpalette();	virtual	const char *defaultpaletteclass();public:	ht_view *menu;		ht_app() {};		ht_app(BuildCtorArg &a): ht_dialog(a) {};		void insert_window(ht_window *window, uint type, bool minimized, bool isfile, FileLayer *layer);		void init(Bounds *b);	virtual	void done();/* overwritten */	virtual	void draw();	virtual	bool focus(ht_view *view);	virtual	const char *func(uint i, bool execute);	virtual	void handlemsg(htmsg *msg);	virtual	void load(ObjectStream &f);	virtual ObjectID getObjectID() const;	virtual	int run(bool modal);	virtual	void store(ObjectStream &f) const;/* new */		ht_window *create_window_clipboard();		ht_window *create_window_file(const char *filename, uint mode, bool allow_duplicates);		ht_window *create_window_file_bin(const char *filename, bool allow_duplicates);		ht_window *create_window_file_text(const char *filename, bool allow_duplicates);		ht_window *create_window_help(const char *file, const char *node);		ht_window *create_window_log();		ht_window *create_window_ofm(const char *url1, const char *url2);		ht_window *create_window_project();		ht_window *create_window_term(const char *cmd);		void delete_window(ht_window *window);		ht_window *get_window_by_filename(const char *filename);		ht_window *get_window_by_number(uint number);		ht_window *get_window_by_type(uint type);		ht_view *popup_view_list(const char *dialog_title);		ht_window *popup_window_list(const char *dialog_title);		void project_opencreate(const char *filename);		void tile(bool vertical);		void modal_resize();};extern ht_log *loglines;/* *	INIT */bool init_app();/* *	DONE */void done_app();#endif /* __HTAPP_H__ */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品一区二区三区四区| 3d动漫精品啪啪一区二区竹菊| 国产色产综合色产在线视频| 青青青伊人色综合久久| 日韩网站在线看片你懂的| 狠狠网亚洲精品| 中文无字幕一区二区三区| 91视视频在线观看入口直接观看www| 中文字幕一区av| 欧美二区在线观看| 大胆亚洲人体视频| 亚洲福利视频一区二区| 2023国产精品自拍| 91首页免费视频| 美女诱惑一区二区| 亚洲丝袜美腿综合| 26uuu国产在线精品一区二区| 91蝌蚪porny九色| 美女mm1313爽爽久久久蜜臀| 国产精品女同一区二区三区| 在线成人av网站| 国产91丝袜在线播放九色| 亚洲成人激情av| 综合久久久久久| 欧美变态凌虐bdsm| 8x福利精品第一导航| 成人v精品蜜桃久久一区| 欧美aⅴ一区二区三区视频| 国产人成一区二区三区影院| 日韩精品一区在线观看| 日韩一区二区不卡| 6080午夜不卡| 欧美剧情片在线观看| 这里只有精品免费| 91精品国产乱码| 日韩一区二区三区三四区视频在线观看 | 丰满少妇久久久久久久| 91在线视频在线| 久久99久久久欧美国产| 日本不卡一区二区三区高清视频| 自拍偷在线精品自拍偷无码专区| 久久精品亚洲精品国产欧美 | 国产精品你懂的在线欣赏| 精品理论电影在线| 欧美大黄免费观看| 亚洲精品一区二区三区香蕉| 欧美一级久久久久久久大片| 欧美一区二区黄| 日韩一卡二卡三卡四卡| 欧美成人精品1314www| 精品国产一区二区三区忘忧草| 欧美大胆人体bbbb| 久久久久久久电影| 亚洲品质自拍视频| 午夜精品久久久久久不卡8050| 色拍拍在线精品视频8848| 欧日韩精品视频| 欧美日韩一区二区在线观看| 欧美一区二区三区思思人| 麻豆精品蜜桃视频网站| 紧缚奴在线一区二区三区| 日韩国产高清影视| 国产成人亚洲精品青草天美| 99精品欧美一区二区三区小说| 91亚洲国产成人精品一区二三| 在线观看网站黄不卡| 欧美精品日韩一本| 国产午夜精品一区二区| 成人免费一区二区三区在线观看| 午夜欧美电影在线观看| 国产精品18久久久久| 不卡一区二区在线| 精品视频免费看| 中文字幕乱码一区二区免费| 一区二区久久久久久| 国产美女久久久久| 在线观看视频一区二区欧美日韩| 精品欧美一区二区久久| 亚洲免费观看高清在线观看| 免费在线观看不卡| 色婷婷久久99综合精品jk白丝| 26uuu久久天堂性欧美| 国产精品污www在线观看| 亚洲成人精品影院| 丁香亚洲综合激情啪啪综合| 91精品国产91热久久久做人人| 亚洲乱码国产乱码精品精可以看| 国产在线精品免费av| 91.麻豆视频| 亚洲午夜激情av| 欧美精品一区二区三区在线| 亚洲精选视频免费看| av成人老司机| 精品欧美乱码久久久久久1区2区| 夜色激情一区二区| av亚洲精华国产精华精| 国产免费久久精品| 国产一区二区久久| 久久综合九色综合97婷婷女人| 青青草97国产精品免费观看| 欧美群妇大交群中文字幕| 亚洲第一久久影院| 精品视频色一区| 久久国产尿小便嘘嘘尿| 国产揄拍国内精品对白| 欧美va亚洲va在线观看蝴蝶网| 男女男精品视频| 久久久久久久久久久99999| 蜜桃视频一区二区三区| 精品国产乱码久久久久久夜甘婷婷 | 91精品国产高清一区二区三区蜜臀| 一区二区三区不卡在线观看| 一本一本久久a久久精品综合麻豆| 亚洲日本va午夜在线影院| 色婷婷香蕉在线一区二区| 一区二区免费看| 欧美日本一区二区三区| 免费成人在线播放| 欧美国产禁国产网站cc| 成人av电影在线| 亚洲国产日韩精品| 精品久久一二三区| 国产精品一区专区| 亚洲欧美区自拍先锋| 欧美久久久久久蜜桃| 国产精品自产自拍| 亚洲精选视频免费看| 91精品国产综合久久久久久久久久| 日韩精品成人一区二区三区| 久久久国产综合精品女国产盗摄| 99在线精品一区二区三区| 国产精品一区二区在线观看不卡| 中文字幕在线不卡| 欧美日韩国产综合一区二区| 国产精品一区二区视频| 亚洲一区二区三区自拍| 久久久久久久综合色一本| 欧美午夜一区二区| 国产99久久久久久免费看农村| 亚洲精品videosex极品| 精品国产一区二区三区久久影院 | 日韩欧美一卡二卡| 日韩专区中文字幕一区二区| 亚洲精品在线免费观看视频| 欧美一a一片一级一片| 国产精品一区在线观看乱码| 水野朝阳av一区二区三区| 中文字幕亚洲欧美在线不卡| 欧美成人官网二区| 欧美三级视频在线观看| 91女厕偷拍女厕偷拍高清| 成人激情视频网站| 日韩高清在线观看| 午夜在线成人av| 国产精品久久毛片| 国产亚洲一区二区三区| 精品国产免费一区二区三区四区| 欧美巨大另类极品videosbest | 久久久久久夜精品精品免费| 欧美日韩亚洲综合一区| 欧美影院精品一区| 欧美色图在线观看| 欧美日韩免费视频| 欧美绝品在线观看成人午夜影视| 欧美三级欧美一级| 欧美怡红院视频| 欧美日韩高清在线播放| 欧美另类久久久品| 日韩一区二区三区在线视频| 欧美一区二区三区在线看| 欧美美女网站色| 欧美成人一区二区三区片免费| 91精品国产一区二区三区香蕉| 日韩一区二区电影网| 精品国产乱码久久久久久闺蜜| 久久综合九色综合97婷婷| 国产亚洲精品aa午夜观看| 国产精品乱人伦| 亚洲伦理在线精品| 日本伊人色综合网| 欧美亚洲另类激情小说| 欧美三级视频在线观看| 日韩免费性生活视频播放| 国产亚洲欧美日韩俺去了| 亚洲色图一区二区三区| 午夜私人影院久久久久| 国产一区二区三区久久久| www.亚洲免费av| 3d成人动漫网站| 国产精品久久久久久久午夜片 | 九九精品视频在线看| thepron国产精品| 欧美精品v国产精品v日韩精品| 久久免费偷拍视频| 亚洲成a人在线观看| eeuss鲁片一区二区三区| 欧美精品丝袜久久久中文字幕| 国产日产欧美精品一区二区三区| 一区二区不卡在线视频 午夜欧美不卡在| 午夜亚洲国产au精品一区二区|