mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-05-04 12:14:24 +02:00
parent
007182b117
commit
c075ae7418
3 changed files with 26 additions and 3 deletions
|
@ -1,9 +1,17 @@
|
|||
#include "pseudoterminal.h"
|
||||
#include <pty.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/wait.h>
|
||||
#include <termios.h>
|
||||
|
||||
// Platform specific includes.
|
||||
#if defined(PLATFORM_LINUX)
|
||||
#include <pty.h>
|
||||
#endif
|
||||
#if defined(PLATFORM_OSX)
|
||||
#include <util.h>
|
||||
#include <sys/ioctl.h>
|
||||
#endif
|
||||
|
||||
using namespace godot;
|
||||
|
||||
void Pseudoterminal::_register_methods()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue