Difference between revisions of "GenerateLibFromDll"

From VideoLAN Wiki
Jump to navigation Jump to search
m
m (+{{Example code|for=libVLC}}, format, grammar)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
Jaw [http://www.zenithscrusher.com/ crusher] is firstly researched and developed in 1858. Due to its simple structure, stable and reliable work and convenient operation and maintenance, it had been widely applied in mining, quarrying, stone crushing and road and bridge construction since then.
+
{{Example code|for=libVLC}}
 +
from: [http://www.coderetard.com/2009/01/21/generate-a-lib-from-a-dll-with-visual-studio/ http://www.coderetard.com/2009/01/21/generate-a-lib-from-a-dll-with-visual-studio/]
  
Jaw crusher machine is mainly used for primarily crushing the raw materials, so that is also called primary jaw crusher or primary crushers.
+
== Introduction ==
  
Jaw crusher is one of the most important crushing machines in the stone crushing production line. It can be not only used for crushing stone materials, pebble and coal and be called stone jaw crusher, but used for manufacturing cement aggregate.
+
To avoid installing and fighting against MSYS and Cygwin, you can just extract
 +
exported symbols from libvlc.dll to generate a .lib (libvlc.lib) and link your program against it.
 +
And all of this using only with Microsoft Visual Studio Tools!
  
crusher adopts good steel to extend its service life. This crushing plant has many features such as deep crushing chamber, both big and small feeding mouth, controllable feeding granularity and the production capacity is high. The biggest material feeding mouth can reach 1200mm*1500mm and 1500mm*2100mm.
+
In case you don't have Visual Studio you can download the free version here [http://www.microsoft.com/express/download Visual Studio Express].
  
Henan Mining Machinery Co., Ltd is the largest jaw crusher supplier in China and produces jaw crushing plant with various models. The main models are mini jaw crusher, PE jaw crusher. Welcome to our company for visit and purchase.
+
== Open a Command Prompt ==
 +
 
 +
It can be found within the Visual Studio Tools menu entry: Start / Program Files / Microsoft Visual Studio / Visual Studio Tools / Visual Studio Command Prompt.
 +
 
 +
== Extract Symbols ==
 +
 
 +
Within the command prompt type:
 +
 
 +
{{prompt|cmd}} dumpbin /exports "{{Path to VLC|windows|dir=y|q=n}}\libvlc.dll" > "{{Path to VLC|windows|dir=y|q=n}}\libvlc.def"
 +
 
 +
Edit the libvlc.def file and modify it to get something like this:
 +
EXPORTS
 +
libvlc_add_intf
 +
libvlc_audio_get_channel
 +
libvlc_audio_get_mute
 +
libvlc_audio_get_track
 +
libvlc_audio_get_track_count
 +
libvlc_audio_get_track_description
 +
  libvlc_audio_get_volume
 +
...
 +
 
 +
Alternatively, the following command will automatically generate the DEF file:
 +
 
 +
{{prompt|cmd}} echo EXPORTS > libvlc.def
 +
{{prompt|cmd}} for /f "usebackq tokens=4,* delims=_ " %i in (`dumpbin /exports "{{Path to VLC|windows|dir=y|q=n}}\libvlc.dll"`) do if %i==libvlc echo %i_%j >> libvlc.def
 +
 
 +
== Generate the .lib ==
 +
 
 +
Still within the command prompt type:
 +
 
 +
{{prompt|cmd}} lib /def:"{{Path to VLC|windows|dir=y|q=n}}\libvlc.def" /out:"{{Path to VLC|windows|dir=y|q=n}}\libvlc.lib" /machine:x86
 +
 
 +
Of course, you'll need to adapt the path according to your configuration.
 +
 
 +
Voilà! You have it, now you can link against libvlc.lib in your program <nowiki>:-)</nowiki>
 +
 
 +
[[Category:libVLC]]

Latest revision as of 08:38, 18 March 2019

This page contains example code for libVLC.

from: http://www.coderetard.com/2009/01/21/generate-a-lib-from-a-dll-with-visual-studio/

Introduction

To avoid installing and fighting against MSYS and Cygwin, you can just extract exported symbols from libvlc.dll to generate a .lib (libvlc.lib) and link your program against it. And all of this using only with Microsoft Visual Studio Tools!

In case you don't have Visual Studio you can download the free version here Visual Studio Express.

Open a Command Prompt

It can be found within the Visual Studio Tools menu entry: Start / Program Files / Microsoft Visual Studio / Visual Studio Tools / Visual Studio Command Prompt.

Extract Symbols

Within the command prompt type:

> dumpbin /exports "%PROGRAMFILES%\VideoLAN\VLC\libvlc.dll" > "%PROGRAMFILES%\VideoLAN\VLC\libvlc.def"

Edit the libvlc.def file and modify it to get something like this:

EXPORTS
libvlc_add_intf
libvlc_audio_get_channel
libvlc_audio_get_mute
libvlc_audio_get_track
libvlc_audio_get_track_count
libvlc_audio_get_track_description
libvlc_audio_get_volume
...

Alternatively, the following command will automatically generate the DEF file:

> echo EXPORTS > libvlc.def
> for /f "usebackq tokens=4,* delims=_ " %i in (`dumpbin /exports "%PROGRAMFILES%\VideoLAN\VLC\libvlc.dll"`) do if %i==libvlc echo %i_%j >> libvlc.def

Generate the .lib

Still within the command prompt type:

> lib /def:"%PROGRAMFILES%\VideoLAN\VLC\libvlc.def" /out:"%PROGRAMFILES%\VideoLAN\VLC\libvlc.lib" /machine:x86

Of course, you'll need to adapt the path according to your configuration.

Voilà! You have it, now you can link against libvlc.lib in your program :-)