Kod: Markera allt
static void cleanupFastLookaheadLimiter(LADSPA_Handle instance) {
#line 188 "fast_lookahead_limiter_1913.xml"
FastLookaheadLimiter *plugin_data = (FastLookaheadLimiter *)instance;
free(plugin_data->buffer);
free(instance);
}
Vad är detta för variabler? Vad används de till och varför? Det är i alla fall inget som verkar finnas definierat i koden i övrigt någonstans vad jag kan hitta med hjälp av textredigerarens sök-funktion, i vare sig huvudfilen eller någon av de övriga tillhörande filerna.The #line command is simply used to change the value of the LINE and FILE variables. The filename is optional. The LINE and FILE variables represent the current file and which line is being read. The command