mirror of
https://github.com/QuasarApp/pe-parse.git
synced 2025-04-30 06:14:36 +00:00
11 lines
140 B
C++
11 lines
140 B
C++
#include "parse.h"
|
|
|
|
parsed_pe *ParsePEFromFile(const char *filePath) {
|
|
return NULL;
|
|
}
|
|
|
|
void DestructParsedPE(parsed_pe *p) {
|
|
|
|
return;
|
|
}
|