c.int64_t(value)function
Creates a new C Value of type int64_t. This function is a simplified wrapper around the Value constructor.
Parameters
value
A Lua value used to initialize the C Value (see Lua to C conversion rules)
Return value
This function returns a ValueExample
local c = require 'c'
-- Defines a C Value of type "int64_t", initialized with the value 9223372036854775807
local val = c.int64_t(9223372036854775807)
-- Prints the C Value
print(val)