mirror of
https://github.com/radio95-rnt/rds95.git
synced 2026-02-26 20:33:53 +01:00
11 lines
246 B
C
11 lines
246 B
C
#pragma once
|
|
#include <lua.h>
|
|
#include <lualib.h>
|
|
#include <lauxlib.h>
|
|
#include "rds.h"
|
|
#include "modulator.h"
|
|
|
|
int lua_set_rds_pi(lua_State *L);
|
|
void init_lua(RDSModulator* rds_mod);
|
|
void run_lua(char *str, char *cmd_output);
|
|
void destroy_lua(); |