注册 登录
编程论坛 VFP论坛

Win32api中的逻辑型参数是怎么申明的?

sam_jiang 发布于 2023-10-21 13:09, 556 次点击
如题。
翻阅资料时发现,这个函数不知道怎么申明第三个参数,
Declare String  HPDF_LoadTTFontFromFile In libhpdf.dll Integer hpdf, String filename, integer embedding
第三个参数应该是个逻辑值吧?


HPDF_LoadTTFontFromFile
#include "apdf.h"
const char*
HPDF_LoadTTFontFromFile (HPDF_Doc         pdf,
                         const char      *file_name,
                         HPDF_BOOL        embedding);
Description
HPDF_LoadTTFontFromFile loads a TrueType font from an external file and register it to a document object. (See "Fonts and Encodings")
Parameter
pdf
Specify the handle of a document object.
file_name
A path of a TrueType font file (.ttf).
embedding
If this parameter is set to HPDF_TRUE, the glyph data of the font is embedded, otherwise only the matrix data is included in PDF file.
Returns
When  HPDF_LoadTTFontFromFile() succeeds, it returns the name of a font. Otherwise, it returns NULL and error-handler is called.
10 回复
#2
iswith2023-10-21 13:54
integer  long  1|0
#3
sam_jiang2023-10-21 14:27
回复 2楼 iswith
我猜也是ture=1,flase=0,但是这个函数运行好像有问题。。。
#4
iswith2023-10-21 15:10
正常你这个是免费版的DLL,看谁编译的!你自己编译的。。。?,最好找大神编译的!它有收费版DLL那个稳定。。。。
#5
吹水佬2023-10-21 20:11
以下是引用sam_jiang在2023-10-21 14:27:20的发言:

我猜也是ture=1,flase=0,但是这个函数运行好像有问题。。。

C/C++ BOOL类型通常是1/0,但 HPDF_BOOL 类型应该是自定义的,或者在头文件(apdf.h)声明。
#6
iswith2023-10-21 20:33
以下是引用吹水佬在2023-10-21 20:11:12的发言:


C/C++ BOOL类型通常是1/0,但 HPDF_BOOL 类型应该是自定义的,或者在头文件(apdf.h)声明。

那就需要查一下"apdf.h"了,看看是个啥玩意儿!我稍微看一下,没有看头文件:HPDF_TRUE|HPDF_FALSE
#7
sam_jiang2023-10-21 20:44
回复 6楼 iswith
只有dll文件,没有头文件,所以只能猜了。。。
#8
csyx2023-10-21 21:52
只有本站会员才能查看附件,请 登录

只有本站会员才能查看附件,请 登录


[此贴子已经被作者于2023-10-21 21:56编辑过]

#9
sam_jiang2023-10-22 10:35
回复 8楼 csyx
感谢,你手上应该还有其他头文件,一起打包发上来吧
#10
csyx2023-10-22 14:05
这里都有 https://
除了上面的 HPDF_BOOL,另外的 HPDF_TRUE、HPDF_FALSE 在 hpdf_consts.h 中
#11
esailor2023-10-24 10:24
版主不简单!
1