New feature: option to decompile only a specific function.

Similar to boomerang's -E option:

```
dcc -E 0x1222 ./TARGET.EXE
```

Will only decompile function at given address.
This might help in isolating dcc crashes.
This commit is contained in:
nemerle
2016-04-26 00:46:56 +02:00
parent 5f39236ba2
commit d1738ea630
3 changed files with 32 additions and 6 deletions

View File

@@ -39,6 +39,7 @@ typedef struct { /* Command line option flags */
unsigned Interact : 1; /* Interactive mode */
unsigned Calls : 1; /* Follow register indirect calls */
QString filename; /* The input filename */
uint32_t CustomEntryPoint;
} OPTION;
extern OPTION option; /* Command line options */