System.SysUtils.Win32Check
Delphi
function Win32Check(RetVal: BOOL): BOOL;
C++
extern DELPHI_PACKAGE System::LongBool __fastcall Win32Check(System::LongBool RetVal);
Propriétés
Type | Visibilité | Source | Unité | Parent |
---|---|---|---|---|
function | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
Description
Vérifie la valeur renvoyée par un appel d'API Windows et déclenche éventuellement une exception.
Appelez Win32Check avec la valeur renvoyée par un appel d'API Windows, un Boolean indiquant la réussite ou l'échec. Si l'API Windows renvoie false (échec), Win32Check appelle RaiseLastOSError pour déclencher une exception. Si la fonction Windows renvoie true, Win32Check renvoie true.
Win32Check est seulement disponible sur Windows.