vb6parse 1.0.0

vb6parse is a library for parsing and analyzing VB6 code, from projects, to controls, to modules, and forms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Common utilities and structures for VB6 file format parsing
//!
//! This module contains shared functionality used across all VB6 file parsers:
//! - Header parsing (VERSION lines, BEGIN blocks)
//! - Attribute statement parsing
//! - Property parsing (generic key-value properties)
//! - Object reference parsing
//!
//! These utilities are used by the class, module, form, and project file parsers.

pub mod header;
pub mod properties;
pub mod references;

pub use header::*;
pub use properties::*;
pub use references::*;