mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
Related-To: NEO-5016 Change-Id: I4409132ce000d6052c7f69a9b19c01389d51c2de Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
37 lines
990 B
C++
37 lines
990 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/windows/sys_calls.h"
|
|
|
|
namespace NEO {
|
|
|
|
namespace SysCalls {
|
|
|
|
HANDLE createEvent(LPSECURITY_ATTRIBUTES lpEventAttributes, BOOL bManualReset, BOOL bInitialState, LPCSTR lpName) {
|
|
return CreateEventA(lpEventAttributes, bManualReset, bInitialState, lpName);
|
|
}
|
|
|
|
BOOL closeHandle(HANDLE hObject) {
|
|
return CloseHandle(hObject);
|
|
}
|
|
|
|
BOOL getSystemPowerStatus(LPSYSTEM_POWER_STATUS systemPowerStatusPtr) {
|
|
return GetSystemPowerStatus(systemPowerStatusPtr);
|
|
}
|
|
BOOL getModuleHandle(DWORD dwFlags, LPCWSTR lpModuleName, HMODULE *phModule) {
|
|
return GetModuleHandleEx(dwFlags, lpModuleName, phModule);
|
|
}
|
|
DWORD getModuleFileName(HMODULE hModule, LPWSTR lpFilename, DWORD nSize) {
|
|
return GetModuleFileName(hModule, lpFilename, nSize);
|
|
}
|
|
char *getenv(const char *variableName) {
|
|
return ::getenv(variableName);
|
|
}
|
|
} // namespace SysCalls
|
|
|
|
} // namespace NEO
|