powerbuilder 9.0中的byte类型的定义
作者:互联网
使用 TBBUTTONINFO 操作工具栏,使用用到byte类型的字段,
在PB9.0中如何定义呢。
C语言的BYTE 类型定义
typedef unsigned char byte;
typedef unsigned char uint8_t; // 范围0~255 (1 Byte)
byte类型的取值 是0-255
所以PB9.0传入的数据不能大于255
PB入参如图1:
实际DLL收到数据图2:
fsStyle 的取值不正确,不能转入大于255的数据
标签:typedef,powerbuilder,PB9.0,unsigned,char,byte,9.0,255 来源: https://blog.csdn.net/asmfox/article/details/122408475