为什么会出现 Symbol 'RaiseLastWin32Error' is deprecated(50分)

  • 主题发起人 主题发起人 Disguiser
  • 开始时间 开始时间
D

Disguiser

Unregistered / Unconfirmed
GUEST, unregistred user!
在调用过RaiseLastWin32Error之后,出现 Symbol 'RaiseLastWin32Error' is deprecated<br>但是不影响程序,就是每次编译的时候都会出现,不知道是哪里错了.
 
{ RaiseLastOSError calls GetLastError to retrieve the code for<br> &nbsp;the last occuring error in a call to an OS or system library function.<br> &nbsp;If GetLastError returns an error code, &nbsp;RaiseLastOSError raises<br> &nbsp;an EOSError exception with the error code and a system-provided<br> &nbsp;message associated with with error. }<br><br>procedure RaiseLastOSError;<br><br>{$IFDEF MSWINDOWS}<br>procedure RaiseLastWin32Error; deprecated; &nbsp;// use RaiseLastOSError<br><br>procedure RaiseLastWin32Error;<br>begin<br> &nbsp;RaiseLastOSError;<br>end;<br><br>你直接调用RaiseLastOSError行了
 

Similar threads

D
回复
0
查看
930
DelphiTeacher的专栏
D
D
回复
0
查看
871
DelphiTeacher的专栏
D
D
回复
0
查看
945
DelphiTeacher的专栏
D
后退
顶部