procedure ReadFileToLinkTable(pFile: file of BYTE; BlockLength: dword); ( 积分: 50

  • 主题发起人 主题发起人 fanronghua
  • 开始时间 开始时间
F

fanronghua

Unregistered / Unconfirmed
GUEST, unregistred user!
procedure ReadFileToLinkTable(pFile: file of BYTE; BlockLength: dword); ( 积分: 50 )<br />procedure ReadFileToLinkTable(pFile: file of BYTE; BlockLength: dword);
说参数不能这么写,有没有其他办法
 
type
TByteFile: file of Byte;

procedure ReadFileToLinkTable(pFile: TByteFile; BlockLength: dword);
 
type
TByteFile= file of Byte;

procedure ReadFileToLinkTable(pFile: TByteFile; BlockLength: dword);

还是不行啊
 
后退
顶部