mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-14 06:00:39 +00:00
19 lines
313 B
C
19 lines
313 B
C
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
||
|
#pragma once
|
||
|
|
||
|
namespace Luau
|
||
|
{
|
||
|
namespace CodeGen
|
||
|
{
|
||
|
|
||
|
struct NativeState;
|
||
|
|
||
|
namespace x64
|
||
|
{
|
||
|
|
||
|
bool initEntryFunction(NativeState& data);
|
||
|
|
||
|
} // namespace x64
|
||
|
} // namespace CodeGen
|
||
|
} // namespace Luau
|