mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-07-26 21:08:45 +08:00
16 lines
347 B
C++
16 lines
347 B
C++
#pragma once
|
|
|
|
#include "nasal.h"
|
|
#include "nasal_gc.h"
|
|
#include "natives/builtin.h"
|
|
|
|
namespace nasal {
|
|
|
|
void subprocess_destructor(void*);
|
|
|
|
var builtin_subprocess_popen(context*, gc*);
|
|
var builtin_subprocess_pclose(context*, gc*);
|
|
var builtin_subprocess_read_stdout(context*, gc*);
|
|
extern nasal_builtin_table subprocess_native[];
|
|
|
|
} |