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

📄 htsys.h

📁 功能较全面的反汇编器:反汇编器ht-2.0.15.tar.gz
💻 H
字号:
/*  *	HT Editor *	htsys.h (DJGPP implementation) * *	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 __HTSYS_H__#define __HTSYS_H__#include "htio.h"#include "global.h"#define HT_SYS_NAME			"DJGPP"#define SYS_SUPPORT_NATIVE_CLIPBOARD#define SYS_NATIVE_CLIPBOARD_NAME "Windows Clipboard"int sys_canonicalize(char *result, const char *filename);int sys_findclose(pfind_t *pfind);int sys_findfirst(const char *dirname, pfind_t *pfind);int sys_findnext(pfind_t *pfind);int sys_pstat(pstat_t *s, const char *filename);void sys_suspend();int sys_get_free_mem();int sys_truncate(const char *filename, FILEOFS ofs);int sys_deletefile(const char *filename);bool sys_is_path_delim(char c);int sys_filename_cmp(const char *a, const char *b);bool sys_write_data_to_native_clipboard(const void *data, int size);int sys_get_native_clipboard_data_size();bool sys_read_data_from_native_clipboard(void *data, int max_size);#include "stream.h"	// FIXME: ARGHint sys_ipc_exec(ht_streamfile **in, ht_streamfile **out, ht_streamfile **err, int *handle, const char *cmd, int options);bool sys_ipc_is_valid(int handle);int sys_ipc_terminate(int handle);int sys_get_caps();/* *	INIT */bool init_system();/* *	DONE */void done_system();#endif /* __HTSYS_H__ */

⌨️ 快捷键说明

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