2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2020-01-29 23:49:42 +08:00
|
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
2019-02-27 18:39:32 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#ifdef WIN32
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/os_interface/windows/windows_wrapper.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2017-12-21 07:45:38 +08:00
|
|
|
#else
|
|
|
|
#ifndef C_ASSERT
|
|
|
|
#define C_ASSERT(e) static_assert(e, #e)
|
|
|
|
#endif
|
|
|
|
#define __stdcall
|
|
|
|
#endif
|
|
|
|
#include "GmmLib.h"
|