blob: b6dad195c3f4386e5e27b2517302546b84d8d68c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef SLANG_INTERNAL_H_INCLUDED
#define SLANG_INTERNAL_H_INCLUDED
#include "slang.h"
namespace Slang
{
struct GlobalSessionInternalDesc
{
bool isBootstrap = false;
};
} // namespace Slang
SLANG_API SlangResult slang_createGlobalSessionImpl(
const SlangGlobalSessionDesc* desc,
const Slang::GlobalSessionInternalDesc* internalDesc,
slang::IGlobalSession** outGlobalSession);
#endif
|