Undeclared identifier: 'TBytes'
delphi7 編譯時,出現這個問題:Undeclared identifier: 'TBytes',該如何解決?
原因:
Delphi2007及以上版本在SysUtils單元定義了TBytes
type
TBytes = array of Byte;
DELPHI7卻沒有定義。
解決辦法:
type {$if CompilerVersion < 18} //before delphi 2007 TBytes = array of Byte; {$ifend}