Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 286 of file parseerror.c.
{ parse_error_t *This; This = heap_alloc( sizeof(*This) ); if ( !This ) return NULL; This->lpVtbl = &parseError_vtbl; This->ref = 1; This->code = code; This->url = url; This->reason = reason; This->srcText = srcText; This->line = line; This->linepos = linepos; This->filepos = filepos; return (IXMLDOMParseError*) &This->lpVtbl; }