~ubuntu-branches/debian/jessie/libsndfile/jessie

« back to all changes in this revision

Viewing changes to Win32/README-precompiled-dll.txt

  • Committer: Bazaar Package Importer
  • Author(s): Anand Kumria
  • Date: 2006-07-03 20:24:54 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060703202454-95xu23pg2wdvr7ir
Tags: 1.0.16-1
* New upstream release
* Update standards version (no changes required)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Notes on Using the Pre-compiled libsndfile DLL.
 
2
===============================================
 
3
 
 
4
In order to use this pre-compiled DLL with Visual Studio, you will need to
 
5
generate a .LIB file from the DLL.
 
6
 
 
7
This can be achieved as follows:
 
8
 
 
9
  1) In a CMD window, change to the directory containing this file and
 
10
     run the command:
 
11
         
 
12
              dumpbin /exports libsndfile-1.dll > libsndfile.def
 
13
 
 
14
  2) Now run the command:
 
15
  
 
16
          lib /machine:i386 /def:libsndfile.def
 
17
 
 
18
You now have a .LIB and a .DLL file to be used with VisualStudio.
 
19
 
 
20
If for some reason these instructions don't work for you or you are still
 
21
not able to use the libsndfile DLL with you project, please do not contact
 
22
the main author of libsndfile. Instead, join the libsndfile-users mailing
 
23
list :
 
24
 
 
25
        http://www.mega-nerd.com/libsndfile/lists.html
 
26
 
 
27
and ask a question there.