Skip to content
PeFileFindSection

PeFileFindSection

Description

Find a section by name (first match; PE allows duplicates but they’re vanishingly rare).

Usage example (Cross-references)

Usage examples (Cross-references)
    }
    
    const PeSection *PeFileFindSection(const PeFile *self, const char *name) {
        if (!self || !name)
            return NULL;
Last updated on