2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2021-05-16 20:51:16 +02:00
|
|
|
* Copyright (C) 2019-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 '/'
|
|
|
|
|
#define __cdecl
|
2019-12-11 15:28:22 +01:00
|
|
|
namespace Os {
|
|
|
|
|
// Pci Path
|
2020-04-08 18:14:19 +02:00
|
|
|
extern const char *sysFsPciPathPrefix;
|
2020-04-08 11:27:04 +02:00
|
|
|
extern const char *pciDevicesDirectory;
|
2020-07-02 15:28:03 +02:00
|
|
|
// Proc Path
|
|
|
|
|
extern const char *sysFsProcPathPrefix;
|
2019-12-11 15:28:22 +01:00
|
|
|
} // namespace Os
|