mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
10 lines
395 B
C
10 lines
395 B
C
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
#pragma once
|
|
|
|
// Can be used to reconfigure visibility/exports for public APIs
|
|
#ifndef LUACOMMON_API
|
|
#define LUACOMMON_API extern
|
|
#endif
|
|
|
|
// sets a bool fast flag value (returns 1 if the flag was found, 0 otherwise)
|
|
LUACOMMON_API int luau_setfflag(const char* name, int value);
|