예제 #1
0
파일: IoMySQL.c 프로젝트: jamesrburgess/io
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;
}
예제 #2
0
파일: IoCairo.c 프로젝트: ADTSH/io
static IoTag *IoCairo_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_(protoId);
	IoTag_state_(tag, state);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoCairo_rawClone);
	return tag;
}
예제 #3
0
파일: IoUser.c 프로젝트: Akiyah/io
IoTag *IoUser_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_("User");
	IoTag_state_(tag, state);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoUser_rawClone);
	return tag;
}
예제 #4
0
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;
}
예제 #5
0
파일: IoCFFIFunction.c 프로젝트: anthem/io
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;
}
예제 #6
0
파일: IoLZODecoder.c 프로젝트: anthem/io
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;
}
예제 #7
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;
}
예제 #8
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;
}
예제 #9
0
파일: IoCurses.c 프로젝트: 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;
}
예제 #10
0
파일: IoEvConnection.c 프로젝트: ADTSH/io
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;
}
예제 #11
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;
}
예제 #12
0
파일: IoODEPlane.c 프로젝트: Akiyah/io
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;
}
예제 #13
0
파일: IoCFFILibrary.c 프로젝트: anthem/io
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;
}
예제 #14
0
파일: IoAsyncRequest.c 프로젝트: Akiyah/io
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;
}
예제 #15
0
파일: IoThread.c 프로젝트: cdcarter/io
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;
}
예제 #16
0
파일: IoOggPacket.c 프로젝트: Akiyah/io
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;
}
예제 #17
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;
}
예제 #18
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;
}
예제 #19
0
파일: IoObject.c 프로젝트: AlexGensek/io
IoTag *IoObject_newTag(void *state)
{
	IoTag *tag = IoTag_newWithName_(protoId);
	IoTag_state_(tag, state);
	IoTag_cloneFunc_(tag, (IoTagCloneFunc *)IoObject_rawClone);
	IoTag_activateFunc_(tag, (IoTagActivateFunc *)NULL); // IoObject_activateFunc;
	return tag;
}
예제 #20
0
파일: IoEvDNS.c 프로젝트: 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;
}
예제 #21
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;
}
예제 #22
0
파일: IoZlibEncoder.c 프로젝트: ADTSH/io
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;
}
예제 #23
0
파일: IoVorbisBlock.c 프로젝트: anthem/io
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;
}
예제 #24
0
파일: IoBlowfish.c 프로젝트: anthem/io
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;
}
예제 #25
0
파일: IoEvDNSRequest.c 프로젝트: ADTSH/io
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;
}
예제 #26
0
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;
}
예제 #27
0
파일: IoClutterEvent.c 프로젝트: Akiyah/io
/*** 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;
}
예제 #28
0
파일: IoCall.c 프로젝트: 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;
}
예제 #29
0
파일: IoYajlGen.c 프로젝트: Akiyah/io
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;
}
예제 #30
0
파일: IoODEMass.c 프로젝트: AlexGensek/io
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;
}