Click here to Skip to main content
15,898,134 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Rogarding doubt C,C++,MFC Pin
Hamid_RT23-Feb-08 1:23
Hamid_RT23-Feb-08 1:23 
GeneralRe: Rogarding doubt C,C++,MFC Pin
Rajesh R Subramanian23-Feb-08 3:37
professionalRajesh R Subramanian23-Feb-08 3:37 
GeneralRe: Rogarding doubt C,C++,MFC Pin
David Crow24-Feb-08 13:26
David Crow24-Feb-08 13:26 
Questionhow to use this lib? Pin
wendyyue22-Feb-08 22:36
wendyyue22-Feb-08 22:36 
AnswerRe: how to use this lib? Pin
CPallini22-Feb-08 22:59
mveCPallini22-Feb-08 22:59 
GeneralRe: how to use this lib? Pin
wendyyue22-Feb-08 23:17
wendyyue22-Feb-08 23:17 
GeneralRe: how to use this lib? Pin
CPallini23-Feb-08 8:06
mveCPallini23-Feb-08 8:06 
AnswerRe: how to use this lib? Pin
Rajkumar R23-Feb-08 2:41
Rajkumar R23-Feb-08 2:41 
wendyyue wrote:
some binary files and dll files in this lib,the binary file(exe )need to call the function in dll

linking in binary space (binary dll and binary exe) is too technical for me. as far as i understand from the link, aubio.org, the sample exe and the dll already has references to functions, it is build using cygwin and windows binaries are produced using mingw. see this Aubio on Windows[^]

actually the import libraries are generated, u need to build the source.

#include <aubio/aubio.h>
#include <aubio/aubioext.h>

int main( int argc, char** argv )
{
        aubio_sndfile_t *foo = new_aubio_sndfile_ro( argv[1] );
        return 1;
}

g++ -laubio -laubioext -lsndfile foo.cxx -o a.out

should resolve all linking references.

from Re: linking problems[^]
it is clear from this, that exe is linked to libraries libaubio, libaubioext, libsndfile which resolves the references.

u may get more help from aubio mailing list it seems.
GeneralRe: how to use this lib? Pin
wendyyue28-Feb-08 21:32
wendyyue28-Feb-08 21:32 
GeneralRe: how to use this lib? Pin
aquawicket14-Mar-08 12:28
aquawicket14-Mar-08 12:28 
Generalinvoke non-static function using :: [modified] Pin
George_George22-Feb-08 22:25
George_George22-Feb-08 22:25 
GeneralRe: invoke non-static function using :: Pin
CPallini22-Feb-08 22:52
mveCPallini22-Feb-08 22:52 
GeneralRe: invoke non-static function using :: Pin
George_George22-Feb-08 22:55
George_George22-Feb-08 22:55 
GeneralRe: invoke non-static function using :: Pin
Rajkumar R22-Feb-08 23:00
Rajkumar R22-Feb-08 23:00 
GeneralRe: invoke non-static function using :: Pin
George_George22-Feb-08 23:29
George_George22-Feb-08 23:29 
GeneralRe: invoke non-static function using :: Pin
Rajkumar R22-Feb-08 23:46
Rajkumar R22-Feb-08 23:46 
GeneralRe: invoke non-static function using :: Pin
George_George22-Feb-08 23:50
George_George22-Feb-08 23:50 
GeneralRe: invoke non-static function using :: Pin
CPallini22-Feb-08 23:08
mveCPallini22-Feb-08 23:08 
GeneralRe: invoke non-static function using :: Pin
George_George22-Feb-08 23:31
George_George22-Feb-08 23:31 
GeneralRe: invoke non-static function using :: Pin
George_George22-Feb-08 23:51
George_George22-Feb-08 23:51 
GeneralRe: invoke non-static function using :: Pin
Rajkumar R22-Feb-08 23:03
Rajkumar R22-Feb-08 23:03 
GeneralRe: invoke non-static function using :: Pin
George_George22-Feb-08 23:09
George_George22-Feb-08 23:09 
GeneralRe: invoke non-static function using :: Pin
Rajkumar R22-Feb-08 23:23
Rajkumar R22-Feb-08 23:23 
GeneralRe: invoke non-static function using :: Pin
George_George22-Feb-08 23:27
George_George22-Feb-08 23:27 
GeneralRe: invoke non-static function using :: Pin
Rajkumar R22-Feb-08 23:35
Rajkumar R22-Feb-08 23:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.