【发布时间】:2013-04-02 19:35:05
【问题描述】:
easyzlib 生成一个dll文件,并尝试注册它,但出现错误。 然后,在 Visual Foxpro 中创建一个项目以使用 ezlib.dll,但会产生其他错误: “找不到入口点 ezcompress int DLL。”
这是测试代码:
DECLARE Integer ezcompress IN ezlib.Dll;
unsigned char pDest, long pnDestlen, const unsigned char pSrc, long nSrcLen;
DECLARE Integer ezuncompress IN ezlib.Dll;
unsigned char pDest, long pnDestlen, const unsigned char pSrc, long nSrcLen;
arq = GETFILE('TXT', 'ProcuraR UM txt:.', '', 1, 'Navegar')
result = ezcompress(0, 0, @arq, 0)
if(result >= 0)
? "Comprimido com sucesso!"
Read Events
请帮帮我!
【问题讨论】:
标签: compression visual-foxpro entry-point dllregistration entrypointnotfoundexcept