2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2021-05-16 20:51:16 +02:00
|
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
#define PATH_SEPARATOR '\\'
|
|
|
|
|
|
|
|
|
|
// For now we need to keep this file clean of OS specific #includes.
|
|
|
|
|
// Only issues to address portability should be covered here.
|
|
|
|
|
|
|
|
|
|
namespace Os {
|
|
|
|
|
// OS GDI name
|
|
|
|
|
extern const char *gdiDllName;
|
2021-05-25 18:42:36 +02:00
|
|
|
extern const char *dxcoreDllName;
|
2018-06-12 21:54:39 +02:00
|
|
|
}; // namespace Os
|