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

📄 readme.txt

📁 是一个很好的编辑器
💻 TXT
字号:
PSPad File handling plugin

Idea - each file extension has own DLL. 
Plugin is used for the file open/save handling if DLL exists and match plugin name to file extension. 
If some error occurs in DLL (DLL functions return False), PSPad internal file handling is used.
PSPad internally checks Plugin version and the message dialog occurs if the incorrect version is found 

DLL must export 3 functions:

function PSP_LoadFromFile(FileName, Data: PChar; DataSize: Integer): Integer; stdcall;
	- parameter DataSize - max. size of allocated buffer on the PSPad side
	- returns real data size 

function PSP_SaveToFile(FileName, Data: PChar; DataSize: Integer): LongBool; stdcall;
	- parameter DataSize - real. size of data
	- returns success state - True/False 

function PSP_Version: LongInt; stdcall;
	- returns plug-in version

⌨️ 快捷键说明

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