Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 185 of file main.c.
{ report_t * report = (report_t *) hreport; report_t * cursor; BOOL found = FALSE; TRACE("(%p)\n", hreport); EnterCriticalSection(&report_table_cs); if (report) { LIST_FOR_EACH_ENTRY(cursor, &report_table, report_t, entry) { if (cursor == report) { found = TRUE; list_remove(&report->entry); break; } } } LeaveCriticalSection(&report_table_cs); if (!found) return E_INVALIDARG; heap_free(report); return S_OK; }