First commit

This commit is contained in:
2021-03-07 05:58:59 +01:00
committed by Andreas Schaafsma
commit 5d4c4a054e
18475 changed files with 3309357 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
// Generated by Haxe 4.0.5
#ifndef INCLUDED_sys_io__Process_Stdin
#define INCLUDED_sys_io__Process_Stdin
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
#ifndef INCLUDED_haxe_io_Output
#include <haxe/io/Output.h>
#endif
HX_DECLARE_CLASS2(haxe,io,Bytes)
HX_DECLARE_CLASS2(haxe,io,Output)
HX_DECLARE_CLASS3(sys,io,_Process,Stdin)
namespace sys{
namespace io{
namespace _Process{
class HXCPP_CLASS_ATTRIBUTES Stdin_obj : public ::haxe::io::Output_obj
{
public:
typedef ::haxe::io::Output_obj super;
typedef Stdin_obj OBJ_;
Stdin_obj();
public:
enum { _hx_ClassId = 0x7e8e3445 };
void __construct( ::Dynamic p);
inline void *operator new(size_t inSize, bool inContainer=true,const char *inName="sys.io._Process.Stdin")
{ return hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return hx::Object::operator new(inSize+extra,true,"sys.io._Process.Stdin"); }
static hx::ObjectPtr< Stdin_obj > __new( ::Dynamic p);
static hx::ObjectPtr< Stdin_obj > __alloc(hx::Ctx *_hx_ctx, ::Dynamic p);
static void * _hx_vtable;
static Dynamic __CreateEmpty();
static Dynamic __Create(hx::DynamicArray inArgs);
//~Stdin_obj();
HX_DO_RTTI_ALL;
hx::Val __Field(const ::String &inString, hx::PropertyAccess inCallProp);
hx::Val __SetField(const ::String &inString,const hx::Val &inValue, hx::PropertyAccess inCallProp);
void __GetFields(Array< ::String> &outFields);
static void __register();
void __Mark(HX_MARK_PARAMS);
void __Visit(HX_VISIT_PARAMS);
bool _hx_isInstanceOf(int inClassId);
::String __ToString() const { return HX_("Stdin",28,23,3b,17); }
::Dynamic p;
::haxe::io::Bytes buf;
};
} // end namespace sys
} // end namespace io
} // end namespace _Process
#endif /* INCLUDED_sys_io__Process_Stdin */

View File

@@ -0,0 +1,66 @@
// Generated by Haxe 4.0.5
#ifndef INCLUDED_sys_io__Process_Stdout
#define INCLUDED_sys_io__Process_Stdout
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
#ifndef INCLUDED_haxe_io_Input
#include <haxe/io/Input.h>
#endif
HX_DECLARE_CLASS2(haxe,io,Bytes)
HX_DECLARE_CLASS2(haxe,io,Input)
HX_DECLARE_CLASS3(sys,io,_Process,Stdout)
namespace sys{
namespace io{
namespace _Process{
class HXCPP_CLASS_ATTRIBUTES Stdout_obj : public ::haxe::io::Input_obj
{
public:
typedef ::haxe::io::Input_obj super;
typedef Stdout_obj OBJ_;
Stdout_obj();
public:
enum { _hx_ClassId = 0x3de41c2e };
void __construct( ::Dynamic p,bool out);
inline void *operator new(size_t inSize, bool inContainer=true,const char *inName="sys.io._Process.Stdout")
{ return hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return hx::Object::operator new(inSize+extra,true,"sys.io._Process.Stdout"); }
static hx::ObjectPtr< Stdout_obj > __new( ::Dynamic p,bool out);
static hx::ObjectPtr< Stdout_obj > __alloc(hx::Ctx *_hx_ctx, ::Dynamic p,bool out);
static void * _hx_vtable;
static Dynamic __CreateEmpty();
static Dynamic __Create(hx::DynamicArray inArgs);
//~Stdout_obj();
HX_DO_RTTI_ALL;
hx::Val __Field(const ::String &inString, hx::PropertyAccess inCallProp);
hx::Val __SetField(const ::String &inString,const hx::Val &inValue, hx::PropertyAccess inCallProp);
void __GetFields(Array< ::String> &outFields);
static void __register();
void __Mark(HX_MARK_PARAMS);
void __Visit(HX_VISIT_PARAMS);
bool _hx_isInstanceOf(int inClassId);
::String __ToString() const { return HX_("Stdout",eb,33,88,3c); }
::Dynamic p;
bool out;
::haxe::io::Bytes buf;
int readByte();
int readBytes( ::haxe::io::Bytes str,int pos,int len);
};
} // end namespace sys
} // end namespace io
} // end namespace _Process
#endif /* INCLUDED_sys_io__Process_Stdout */