winlib 0.1.1

tools for creating, inspecting and modifying windows lib files
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# winlib

A command line tool for creating Windows libraries.

```
Usage:
        winlib create <LIB_PATH> --from <PATH> --remove-idata [--keep-removed <PATH>]

<LIB_PATH> is the path of the lib to create.

Options:
        --from <PATH>           The new lib will contain members from the old lib at <PATH>.
        --remove-idata          Remove members containing .idata sections.
        --keep-removed <PATH>   Store the removed members in a separate library at <PATH>.

Example:
        winlib create newlib.lib --from oldlib.lib --remove-idata --keep-remove import.lib
```