luau/CodeGen/src/CodeGenX64.h

19 lines
313 B
C
Raw Normal View History

2022-10-13 23:59:53 +01:00
// 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;
2023-03-03 13:45:38 +00:00
namespace X64
2022-10-13 23:59:53 +01:00
{
bool initEntryFunction(NativeState& data);
2023-03-03 13:45:38 +00:00
} // namespace X64
2022-10-13 23:59:53 +01:00
} // namespace CodeGen
} // namespace Luau