Example #1
0
IoTag* IoMySQL_newTag(void* state) {
    IoTag* tag = IoTag_newWithName_("MySQL");
    IoTag_state_(tag, state);
    IoTag_freeFunc_(tag, (IoTagFreeFunc*) IoMySQL_free);
    IoTag_cloneFunc_(tag, (IoTagCloneFunc*) IoMySQL_rawClone);
    return tag;
}
Example #2
0
IoTag *IoEvDNSRequest_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_(protoId);
	IoTag_state_(tag, state);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoEvDNSRequest_rawClone);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoEvDNSRequest_free);
	return tag;
}
Example #3
0
IoTag *IoOggPacket_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("OggPacket");
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoOggPacket_free);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoOggPacket_rawClone);
	return tag;
}
IoTag *IoCInvokeStructure_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("Structure");
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoCInvokeStructure_free);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoCInvokeStructure_rawClone);
	return tag;
}
static IoTag *IoCairoLinearGradient_newTag(void *state)
{
    IoTag *tag = IoTag_newWithName_("LinearGradient");
    IoTag_state_(tag, state);
    IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoCairoLinearGradient_rawClone);
    IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoCairoPattern_free);
    return tag;
}
Example #6
0
static IoTag *IoDynLib_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_(protoId);
	IoTag_state_(tag, state);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoDynLib_rawClone);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoDynLib_free);
	return tag;
}
Example #7
0
static IoTag *IoCairoTextExtents_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_(protoId);
	IoTag_state_(tag, state);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoCairoTextExtents_rawClone);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoCairoTextExtents_free);
	return tag;
}
Example #8
0
File: IoCurses.c Project: Akiyah/io
IoTag *IoCurses_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("Curses");
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoCurses_free);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoCurses_rawClone);
	return tag;
}
Example #9
0
IoTag *IoAppleSensors_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_(protoId);
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoAppleSensors_free);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoAppleSensors_rawClone);
	return tag;
}
Example #10
0
IoTag *IoTheoraSetupInfo_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("TheoraSetupInfo");
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoTheoraSetupInfo_free);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoTheoraSetupInfo_rawClone);
	return tag;
}
Example #11
0
IoTag *IoODEPlane_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("ODEPlane");
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoODEPlane_free);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoODEPlane_rawClone);
	return tag;
}
Example #12
0
IoTag *IoCFFILibrary_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("Library");
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoCFFILibrary_free);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoCFFILibrary_rawClone);
	return tag;
}
Example #13
0
IoTag *IoAsyncRequest_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("AsyncRequest");
	IoTag_state_(tag, state);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoAsyncRequest_rawClone);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoAsyncRequest_free);
	return tag;
}
Example #14
0
IoTag *IoThread_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("Thread");
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoThread_free);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoThread_rawClone);
	return tag;
}
Example #15
0
IoTag *IoTheoraDecodeContext_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_(protoId);
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoTheoraDecodeContext_free);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoTheoraDecodeContext_rawClone);
	return tag;
}
Example #16
0
IoTag *IoEvConnection_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_(protoId);
	IoTag_state_(tag, state);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoEvConnection_rawClone);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoEvConnection_free);
	return tag;
}
Example #17
0
File: IoEvDNS.c Project: Akiyah/io
IoTag *IoEvDNS_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("EvDNS");
	IoTag_state_(tag, state);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoEvDNS_rawClone);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoEvDNS_free);
	return tag;
}
Example #18
0
IoTag *IoBlowfish_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("Blowfish");
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoBlowfish_free);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoBlowfish_rawClone);
	return tag;
}
Example #19
0
IoTag *IoZlibEncoder_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_(protoId);
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoZlibEncoder_free);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoZlibEncoder_rawClone);
	return tag;
}
Example #20
0
IoTag *IoVorbisBlock_newTag(void *state)
{
    IoTag *tag = IoTag_newWithName_("VorbisBlock");
    IoTag_state_(tag, state);
    IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoVorbisBlock_free);
    IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoVorbisBlock_rawClone);
    return tag;
}
Example #21
0
IoTag *IoLZODecoder_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("LZODecoder");
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoLZODecoder_free);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoLZODecoder_rawClone);
	return tag;
}
Example #22
0
static IoTag *IoCairoContext_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("CairoContext");
	IoTag_state_(tag, state);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoCairoContext_rawClone);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoCairoContext_free);
	return tag;
}
Example #23
0
IoTag *IoCFFIFunction_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("Function");
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoCFFIFunction_free);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoCFFIFunction_rawClone);
	return tag;
}
Example #24
0
static IoTag *IoCairoSVGSurface_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("CairoSVGSurface");
	IoTag_state_(tag, state);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoCairoSVGSurface_rawClone);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoCairoSurface_free);
	return tag;
}
Example #25
0
/*** Initalisation functions ***/
IoTag *IoClutterEvent_newTag(void *state) {
  IoTag *tag = IoTag_newWithName_("ClutterEvent");

  IoTag_state_(tag, state);
  IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoClutterEvent_free);
  IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoClutterEvent_rawClone);

  return tag;
}
Example #26
0
IoTag *IoYajlGen_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("YajlGen");
	IoTag_state_(tag, state);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoYajlGen_rawClone);
	IoTag_markFunc_(tag, (IoTagMarkFunc *)IoYajlGen_mark);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoYajlGen_free);
	return tag;
}
Example #27
0
File: IoCall.c Project: Akiyah/io
IoTag *IoCall_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("Call");
	IoTag_state_(tag, state);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoCall_rawClone);
	IoTag_markFunc_(tag, (IoTagMarkFunc *)IoCall_mark);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoCall_free);
	return tag;
}
Example #28
0
IoTag *IoODEJointGroup_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("ODEJointGroup");
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoODEJointGroup_free);
	IoTag_markFunc_(tag, (IoTagMarkFunc *)IoODEJointGroup_mark);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoODEJointGroup_rawClone);
	return tag;
}
Example #29
0
IoTag *IoODEMass_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_(protoId);
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoODEMass_free);
	IoTag_markFunc_(tag, (IoTagMarkFunc *)IoODEMass_mark);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoODEMass_rawClone);
	return tag;
}
Example #30
0
IoTag *IoCFFIPointer_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("Pointer");
	IoTag_state_(tag, state);
	IoTag_freeFunc_(tag, (IoTagFreeFunc *)IoCFFIPointer_free);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoCFFIPointer_rawClone);
	//IoTag_markFunc_(tag, (IoTagMarkFunc *)IoCFFIPointer_mark);
	return tag;
}