First commit
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
// Generated by Haxe 4.0.5
|
||||
#ifndef INCLUDED_lime_system__ThreadPool_ThreadPoolMessage
|
||||
#define INCLUDED_lime_system__ThreadPool_ThreadPoolMessage
|
||||
|
||||
#ifndef HXCPP_H
|
||||
#include <hxcpp.h>
|
||||
#endif
|
||||
|
||||
HX_DECLARE_CLASS3(lime,_hx_system,_ThreadPool,ThreadPoolMessage)
|
||||
HX_DECLARE_CLASS3(lime,_hx_system,_ThreadPool,ThreadPoolMessageType)
|
||||
|
||||
namespace lime{
|
||||
namespace _hx_system{
|
||||
namespace _ThreadPool{
|
||||
|
||||
|
||||
class HXCPP_CLASS_ATTRIBUTES ThreadPoolMessage_obj : public hx::Object
|
||||
{
|
||||
public:
|
||||
typedef hx::Object super;
|
||||
typedef ThreadPoolMessage_obj OBJ_;
|
||||
ThreadPoolMessage_obj();
|
||||
|
||||
public:
|
||||
enum { _hx_ClassId = 0x23d7cac4 };
|
||||
|
||||
void __construct( ::lime::_hx_system::_ThreadPool::ThreadPoolMessageType type, ::Dynamic state);
|
||||
inline void *operator new(size_t inSize, bool inContainer=true,const char *inName="lime.system._ThreadPool.ThreadPoolMessage")
|
||||
{ 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,"lime.system._ThreadPool.ThreadPoolMessage"); }
|
||||
static hx::ObjectPtr< ThreadPoolMessage_obj > __new( ::lime::_hx_system::_ThreadPool::ThreadPoolMessageType type, ::Dynamic state);
|
||||
static hx::ObjectPtr< ThreadPoolMessage_obj > __alloc(hx::Ctx *_hx_ctx, ::lime::_hx_system::_ThreadPool::ThreadPoolMessageType type, ::Dynamic state);
|
||||
static void * _hx_vtable;
|
||||
static Dynamic __CreateEmpty();
|
||||
static Dynamic __Create(hx::DynamicArray inArgs);
|
||||
//~ThreadPoolMessage_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_("ThreadPoolMessage",81,8d,d9,cb); }
|
||||
|
||||
::Dynamic state;
|
||||
::lime::_hx_system::_ThreadPool::ThreadPoolMessageType type;
|
||||
};
|
||||
|
||||
} // end namespace lime
|
||||
} // end namespace system
|
||||
} // end namespace _ThreadPool
|
||||
|
||||
#endif /* INCLUDED_lime_system__ThreadPool_ThreadPoolMessage */
|
||||
@@ -0,0 +1,45 @@
|
||||
// Generated by Haxe 4.0.5
|
||||
#ifndef INCLUDED_lime_system__ThreadPool_ThreadPoolMessageType
|
||||
#define INCLUDED_lime_system__ThreadPool_ThreadPoolMessageType
|
||||
|
||||
#ifndef HXCPP_H
|
||||
#include <hxcpp.h>
|
||||
#endif
|
||||
|
||||
HX_DECLARE_CLASS3(lime,_hx_system,_ThreadPool,ThreadPoolMessageType)
|
||||
namespace lime{
|
||||
namespace _hx_system{
|
||||
namespace _ThreadPool{
|
||||
|
||||
|
||||
class ThreadPoolMessageType_obj : public hx::EnumBase_obj
|
||||
{
|
||||
typedef hx::EnumBase_obj super;
|
||||
typedef ThreadPoolMessageType_obj OBJ_;
|
||||
|
||||
public:
|
||||
ThreadPoolMessageType_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_("lime.system._ThreadPool.ThreadPoolMessageType",ec,6c,62,b0); }
|
||||
::String __ToString() const { return HX_("ThreadPoolMessageType.",f3,be,69,35) + _hx_tag; }
|
||||
|
||||
static ::lime::_hx_system::_ThreadPool::ThreadPoolMessageType COMPLETE;
|
||||
static inline ::lime::_hx_system::_ThreadPool::ThreadPoolMessageType COMPLETE_dyn() { return COMPLETE; }
|
||||
static ::lime::_hx_system::_ThreadPool::ThreadPoolMessageType ERROR;
|
||||
static inline ::lime::_hx_system::_ThreadPool::ThreadPoolMessageType ERROR_dyn() { return ERROR; }
|
||||
static ::lime::_hx_system::_ThreadPool::ThreadPoolMessageType EXIT;
|
||||
static inline ::lime::_hx_system::_ThreadPool::ThreadPoolMessageType EXIT_dyn() { return EXIT; }
|
||||
static ::lime::_hx_system::_ThreadPool::ThreadPoolMessageType PROGRESS;
|
||||
static inline ::lime::_hx_system::_ThreadPool::ThreadPoolMessageType PROGRESS_dyn() { return PROGRESS; }
|
||||
static ::lime::_hx_system::_ThreadPool::ThreadPoolMessageType WORK;
|
||||
static inline ::lime::_hx_system::_ThreadPool::ThreadPoolMessageType WORK_dyn() { return WORK; }
|
||||
};
|
||||
|
||||
} // end namespace lime
|
||||
} // end namespace system
|
||||
} // end namespace _ThreadPool
|
||||
|
||||
#endif /* INCLUDED_lime_system__ThreadPool_ThreadPoolMessageType */
|
||||
Reference in New Issue
Block a user