forked from haiwan/sledge
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
446 B
11 lines
446 B
#pragma once
|
|
|
|
#include "sandbox.h"
|
|
|
|
void current_sandbox_close_file_descriptor(int io_handle_index);
|
|
struct sandbox *current_sandbox_get(void);
|
|
int current_sandbox_get_file_descriptor(int io_handle_index);
|
|
int current_sandbox_initialize_io_handle(void);
|
|
void current_sandbox_set(struct sandbox *sandbox);
|
|
int current_sandbox_set_file_descriptor(int io_handle_index, int file_descriptor);
|