First commit
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
// Generated by Haxe 4.0.5
|
||||
#ifndef INCLUDED_haxe_zip__InflateImpl_State
|
||||
#define INCLUDED_haxe_zip__InflateImpl_State
|
||||
|
||||
#ifndef HXCPP_H
|
||||
#include <hxcpp.h>
|
||||
#endif
|
||||
|
||||
HX_DECLARE_CLASS3(haxe,zip,_InflateImpl,State)
|
||||
namespace haxe{
|
||||
namespace zip{
|
||||
namespace _InflateImpl{
|
||||
|
||||
|
||||
class State_obj : public hx::EnumBase_obj
|
||||
{
|
||||
typedef hx::EnumBase_obj super;
|
||||
typedef State_obj OBJ_;
|
||||
|
||||
public:
|
||||
State_obj() {};
|
||||
HX_DO_ENUM_RTTI;
|
||||
static void __boot();
|
||||
static void __register();
|
||||
static bool __GetStatic(const ::String &inName, Dynamic &outValue, hx::PropertyAccess inCallProp);
|
||||
::String GetEnumName( ) const { return HX_("haxe.zip._InflateImpl.State",a0,c2,8b,f6); }
|
||||
::String __ToString() const { return HX_("State.",1d,4d,90,3a) + _hx_tag; }
|
||||
|
||||
static ::haxe::zip::_InflateImpl::State Block;
|
||||
static inline ::haxe::zip::_InflateImpl::State Block_dyn() { return Block; }
|
||||
static ::haxe::zip::_InflateImpl::State CData;
|
||||
static inline ::haxe::zip::_InflateImpl::State CData_dyn() { return CData; }
|
||||
static ::haxe::zip::_InflateImpl::State Crc;
|
||||
static inline ::haxe::zip::_InflateImpl::State Crc_dyn() { return Crc; }
|
||||
static ::haxe::zip::_InflateImpl::State Dist;
|
||||
static inline ::haxe::zip::_InflateImpl::State Dist_dyn() { return Dist; }
|
||||
static ::haxe::zip::_InflateImpl::State DistOne;
|
||||
static inline ::haxe::zip::_InflateImpl::State DistOne_dyn() { return DistOne; }
|
||||
static ::haxe::zip::_InflateImpl::State Done;
|
||||
static inline ::haxe::zip::_InflateImpl::State Done_dyn() { return Done; }
|
||||
static ::haxe::zip::_InflateImpl::State Flat;
|
||||
static inline ::haxe::zip::_InflateImpl::State Flat_dyn() { return Flat; }
|
||||
static ::haxe::zip::_InflateImpl::State Head;
|
||||
static inline ::haxe::zip::_InflateImpl::State Head_dyn() { return Head; }
|
||||
};
|
||||
|
||||
} // end namespace haxe
|
||||
} // end namespace zip
|
||||
} // end namespace _InflateImpl
|
||||
|
||||
#endif /* INCLUDED_haxe_zip__InflateImpl_State */
|
||||
@@ -0,0 +1,77 @@
|
||||
// Generated by Haxe 4.0.5
|
||||
#ifndef INCLUDED_haxe_zip__InflateImpl_Window
|
||||
#define INCLUDED_haxe_zip__InflateImpl_Window
|
||||
|
||||
#ifndef HXCPP_H
|
||||
#include <hxcpp.h>
|
||||
#endif
|
||||
|
||||
HX_DECLARE_CLASS2(haxe,crypto,Adler32)
|
||||
HX_DECLARE_CLASS2(haxe,io,Bytes)
|
||||
HX_DECLARE_CLASS3(haxe,zip,_InflateImpl,Window)
|
||||
|
||||
namespace haxe{
|
||||
namespace zip{
|
||||
namespace _InflateImpl{
|
||||
|
||||
|
||||
class HXCPP_CLASS_ATTRIBUTES Window_obj : public hx::Object
|
||||
{
|
||||
public:
|
||||
typedef hx::Object super;
|
||||
typedef Window_obj OBJ_;
|
||||
Window_obj();
|
||||
|
||||
public:
|
||||
enum { _hx_ClassId = 0x021b9cf3 };
|
||||
|
||||
void __construct(bool hasCrc);
|
||||
inline void *operator new(size_t inSize, bool inContainer=true,const char *inName="haxe.zip._InflateImpl.Window")
|
||||
{ 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,"haxe.zip._InflateImpl.Window"); }
|
||||
static hx::ObjectPtr< Window_obj > __new(bool hasCrc);
|
||||
static hx::ObjectPtr< Window_obj > __alloc(hx::Ctx *_hx_ctx,bool hasCrc);
|
||||
static void * _hx_vtable;
|
||||
static Dynamic __CreateEmpty();
|
||||
static Dynamic __Create(hx::DynamicArray inArgs);
|
||||
//~Window_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_("Window",10,08,21,87); }
|
||||
|
||||
::haxe::io::Bytes buffer;
|
||||
int pos;
|
||||
::haxe::crypto::Adler32 crc;
|
||||
void slide();
|
||||
::Dynamic slide_dyn();
|
||||
|
||||
void addBytes( ::haxe::io::Bytes b,int p,int len);
|
||||
::Dynamic addBytes_dyn();
|
||||
|
||||
void addByte(int c);
|
||||
::Dynamic addByte_dyn();
|
||||
|
||||
int getLastChar();
|
||||
::Dynamic getLastChar_dyn();
|
||||
|
||||
int available();
|
||||
::Dynamic available_dyn();
|
||||
|
||||
::haxe::crypto::Adler32 checksum();
|
||||
::Dynamic checksum_dyn();
|
||||
|
||||
};
|
||||
|
||||
} // end namespace haxe
|
||||
} // end namespace zip
|
||||
} // end namespace _InflateImpl
|
||||
|
||||
#endif /* INCLUDED_haxe_zip__InflateImpl_Window */
|
||||
Reference in New Issue
Block a user