mirror of
https://github.com/luau-lang/luau.git
synced 2025-01-20 17:58:07 +00:00
18 lines
313 B
C++
18 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
|