mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
51f79c1b10
Also improves the handling of uint32_t arguments
11 lines
264 B
C
11 lines
264 B
C
#pragma once
|
|
|
|
#include "lua/src/lua.hpp"
|
|
|
|
int new_uint32_t(lua_State *L);
|
|
uint32_t *check_uint32_t(lua_State *L, int arg);
|
|
uint32_t coerce_to_uint32_t(lua_State *L, int arg);
|
|
|
|
void load_boxed_numerics(lua_State *L);
|
|
void load_boxed_numerics_sandbox(lua_State *L);
|