[*] Missing SysPushErrorXXXs
This commit is contained in:
parent
36a72228db
commit
51dcd190b3
@ -257,11 +257,13 @@ namespace Aurora::IO
|
||||
if (!uHandle ||
|
||||
uHandle == (AuUInt)INVALID_HANDLE_VALUE)
|
||||
{
|
||||
SysPushErrorArg();
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!(dwType = ::GetFileType((HANDLE)uHandle)))
|
||||
{
|
||||
SysPushErrorGeneric();
|
||||
return {};
|
||||
}
|
||||
|
||||
@ -276,11 +278,13 @@ namespace Aurora::IO
|
||||
if (!uHandle ||
|
||||
uHandle == (AuUInt)INVALID_HANDLE_VALUE)
|
||||
{
|
||||
SysPushErrorArg();
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!(dwType = ::GetFileType((HANDLE)uHandle)))
|
||||
{
|
||||
SysPushErrorGeneric();
|
||||
return {};
|
||||
}
|
||||
|
||||
@ -295,11 +299,13 @@ namespace Aurora::IO
|
||||
if (!uHandle ||
|
||||
uHandle == (AuUInt)INVALID_HANDLE_VALUE)
|
||||
{
|
||||
SysPushErrorArg();
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!(dwType = ::GetFileType((HANDLE)uHandle)))
|
||||
{
|
||||
SysPushErrorGeneric();
|
||||
return {};
|
||||
}
|
||||
|
||||
|
@ -174,6 +174,7 @@ namespace Aurora::IO
|
||||
{
|
||||
if ((AuSInt)uHandle < 0)
|
||||
{
|
||||
SysPushErrorArg();
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -186,6 +187,7 @@ namespace Aurora::IO
|
||||
|
||||
if ((AuSInt)uHandle < 0)
|
||||
{
|
||||
SysPushErrorArg();
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -204,6 +206,7 @@ namespace Aurora::IO
|
||||
|
||||
if ((AuSInt)uHandle < 0)
|
||||
{
|
||||
SysPushErrorArg();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user