CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Physikant

Search: Search took 0.02 seconds.

  1. Replies
    27
    Views
    5,584

    Re: Problems with implementing dlls

    Hello,

    i've did it :)
    The suggestion of Eri523 solved the problem.
    Thanks to everyone who spent his time to help me.

    Best regards,
    Nikolas
  2. Replies
    27
    Views
    5,584

    Re: Problems with implementing dlls

    Oh, one of my source files uses managed code! Basically, i've got a gui with the .net librarys. I call from this code a function of the wavelet library. This function (and all that are needed for the...
  3. Replies
    27
    Views
    5,584

    Re: Problems with implementing dlls

    The only functions calling libfftw are from the wavelet lib, which is in native c++, not managed. So it uses these data types, mainly vector. As I said, I copied the parts of the code form the...
  4. Replies
    27
    Views
    5,584

    Re: Problems with implementing dlls

    A while i thought that I solved it, but I just made the error to put the .dll to the additional dependencies instead of the .lib. If I put the .lib there instead, I get 2031, 2028 and 2019 again....
  5. Replies
    27
    Views
    5,584

    Re: Problems with implementing dlls

    So I put the parts of the library I need directly in my code. And there is the next problem: it uses libfftw3-3.dll.
    On the homepage of libfftw3-3.dll (here, i found the dll, the header file and a...
  6. Replies
    27
    Views
    5,584

    Re: Problems with implementing dlls

    @VictorN
    I already added it to the additional dependencies for the linker, thats what i meant with the sentence "I added [2],[3],[5],[6] to the directories for the linker.". Sorry, I always have to...
  7. Replies
    27
    Views
    5,584

    Re: Problems with implementing dlls

    Ok, I came back to this project and it's still not working.
    I made a test project from scratch to make sure there is no problem with what ive done so far.
    My project has this structure:...
  8. Replies
    27
    Views
    5,584

    Re: Problems with implementing dlls

    I removed the lib from the ressources folder again, but its still in the list of the project.
    The lib-file is in the folder of my source on the hdd.

    Any more ideas? :(

    Best regards,
    ...
  9. Replies
    27
    Views
    5,584

    Re: Problems with implementing dlls

    I inserted the line at the beginnig of my code and I added wavelet2d.lib in the project-explorer as a ressource-file and in the main root of the project.
    Still the external symbol can't be resolved....
  10. Replies
    27
    Views
    5,584

    Re: Problems with implementing dlls

    It is in wavelet2d.h. If I include that file, I get a linker error:
    error LNK2001: unresolved external symbol ""void * __clrcall dwt_sym(class std::vector<double,class std::allocator<double> >...
  11. Replies
    27
    Views
    5,584

    Re: Problems with implementing dlls

    error C3861: "dwt_sym": identifier not found.
    Best regards,
    Nikolas
  12. Replies
    27
    Views
    5,584

    Problems with implementing dlls

    Hello,

    I know this is a simple question, but I'm really stuck here; I even bought a book and made what was written there, but it didn't help.

    I wan't to use the library wavelet2d from here....
Results 1 to 12 of 12





Click Here to Expand Forum to Full Width

Featured