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

Search:

Type: Posts; User: aloifolia

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    4,705

    Re: How to include miniunzip?

    Minizip/-unzip should make the usage of zlib easier as shown in the example above.

    But zlib would also be a start. So I guess I then have to link libz.a? Which g++ command would you use to...
  2. Replies
    2
    Views
    4,705

    How to include miniunzip?

    Hi everyone,

    I want to build a program which unzips compressed archives and that uses miniunzip to archive this goal.
    So I somehow need to include it into my project. As I do not want to require...
  3. Replies
    5
    Views
    9,488

    Re: Boost.Extension Tutorial 1 - Problem

    So I just understood that the linker is complaining about not finding the necessary library. I know that -ldl would be the parameter to pass to the compiler. Unfortunately I do not know how to...
  4. Replies
    5
    Views
    9,488

    Re: Boost.Extension Tutorial 1 - Problem

    Thank you! I should have included the namespaces instead.

    So that's my new main.cpp-file now:


    #include <iostream>
    #include <boost/extension/shared_library.hpp>
    #include <boost/function.hpp>...
  5. Replies
    5
    Views
    9,488

    Re: Boost.Extension Tutorial 1 - Problem

    Sorry, "hello.cpp looks like this" should be "hello_world.cpp looks like this"...
  6. Replies
    5
    Views
    9,488

    Boost.Extension Tutorial 1 - Problem

    Hi,

    I'm a total beginner to the Boost library and wanted to use Boost.Extension to build a plugin-based program.
    After struggling through the installation of various Boost-stuff I wanted to...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured