Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 21 of file accelerator.c.
Referenced by NtUserCopyAcceleratorTable(), NtUserDestroyAcceleratorTable(), NtUserTranslateAccelerator(), and NtUserValidateHandleSecure().
{ PACCELERATOR_TABLE Accel; if (!hAccel) { EngSetLastError(ERROR_INVALID_ACCEL_HANDLE); return NULL; } Accel = UserGetObject(gHandleTable, hAccel, otAccel); if (!Accel) { EngSetLastError(ERROR_INVALID_ACCEL_HANDLE); return NULL; } return Accel; }