W
wwwzzz
Unregistered / Unconfirmed
GUEST, unregistred user!
本人会在delphi中调用DLL,但遇见以下DLL中函数,请教其中 *pText 在delphi中不知如何定义?<br>int User_AddText(int CardNum,User_Text *pText,int iProgramIndex);<br>函数功能:添加文本区<br>参数说明:iComNum - 板卡编号,基数为1,即第一块卡编号为1<br>pText- 文本参数表指针,参考【文本区参数】 <br>iProgramIndex- 节目索引号<br>返回值: -1-添加文本区失败,非-1-分区编号<br>--------------------------------------------------------------<br>§文本区参数<br>typedef struct _User_Text<br>{<br>char *chContent; §显示内容<br>User_PartInfo PartInfo;§分区信息<br>COLORREF BkColor;§背景颜色<br>User_FontSet FontInfo; §字体设置<br>User_MoveSet MoveSet; §动作方式设置<br>}User_Text;