Files
AaLl86 99652d0d11 Update How_To_Generate_Libs.txt
Fixed something in the Help
2018-04-15 18:46:45 -07:00

23 lines
595 B
Plaintext

These files have been generated with the following commands:
1. List all the Exports
dumpbin /exports winhv.sys > winhv_exports.txt
dumpbin /exports winhvr.sys > winhvr_exports.txt
2. Copy all the names (and optionally the ordinals) in a DEF file like the following:
LIBRARY WinHv
EXPORTS
DllInitialize @1
DllUnload @2
DriverEntry @3
WinHvAcceptGpaPages @4
<List of Exported Entry Points>
3. Generate the LIB files
lib /def:winhv_exports.def /out:winhv.lib
Simple, isn't it?
Last revision: 04/15/2018
by AaLl86