FXSend/Sgip/tips.txt
2025-02-28 17:05:50 +08:00

18 lines
324 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

VC下如何由dll文件生成lib文件
1、定义一个def文件 sgip.def
LIBRUARY "SGIP"
DESCRIPTION "SGIP dll"
EXPORTS
Startup @1
Cleanup @2
Submit @3
Deliver @4
2、lib /def:sgip.def /machine:ix86 /out:sgip.lib
得到sgip.lib
3、vc中菜单project->setting->link:
在Object/library modules中加入 sgip.lib
源文件中包含 sgip.h