2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2021-05-17 02:51:16 +08:00
|
|
|
* Copyright (C) 2019-2021 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#define PATH_SEPARATOR '/'
|
|
|
|
#define __cdecl
|
2019-12-11 22:28:22 +08:00
|
|
|
namespace Os {
|
|
|
|
// Pci Path
|
2020-04-09 00:14:19 +08:00
|
|
|
extern const char *sysFsPciPathPrefix;
|
2020-04-08 17:27:04 +08:00
|
|
|
extern const char *pciDevicesDirectory;
|
2020-07-02 21:28:03 +08:00
|
|
|
// Proc Path
|
|
|
|
extern const char *sysFsProcPathPrefix;
|
2019-12-11 22:28:22 +08:00
|
|
|
} // namespace Os
|