mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 01:42:29 +00:00
13 lines
284 B
C
13 lines
284 B
C
#include <idc.idc>
|
|
#include "batch/import_symbols.idc"
|
|
#include "batch/import_data_types.idc"
|
|
#include "batch/import_functions.idc"
|
|
|
|
static main() {
|
|
// Import all
|
|
import_symbols();
|
|
import_data_types();
|
|
import_functions();
|
|
// Wait for auto-analysis to be finished
|
|
auto_wait();
|
|
}
|