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

Search:

Type: Posts; User: Tex Killer

Search: Search took 0.06 seconds.

  1. Replies
    18
    Views
    2,567

    Re: Making static library with MinGW

    Well, I was now able to add three methods myself (which allowed me to open an .arc file, but only one with uncompressed data), by pasting their signatures into my code and calling the...
  2. Replies
    18
    Views
    2,567

    Re: Making static library with MinGW

    Paul, that code was made by the creator, not by me. The thing is, that function adds the method to some static list of compression methods elsewere, and that list is used... This static variable,...
  3. Replies
    18
    Views
    2,567

    Re: Making static library with MinGW

    I've posted this line on my third post:


    static int LZMA_x = AddCompressionMethod (parse_LZMA);

    The thing is, those lines work on the .dll, but not on the .a. Can you tell me what are those...
  4. Replies
    18
    Views
    2,567

    Re: Making static library with MinGW

    I guess you didn't get the full picture... That function is to be called statically, on the global scope, and not inside other functions.
    I did go through the code, as you suggested, but doing that...
  5. Replies
    18
    Views
    2,567

    Re: Making static library with MinGW

    Thank you very much, but I already debugged the code, and my breakpoint on that file never gets the execution to stop. How would I know why that line is never executed if it is static?
  6. Replies
    18
    Views
    2,567

    Re: Making static library with MinGW

    Man, all the tutorials I find about static libraries teach how to use ar.exe and how to do the linking, but that I already got covered... Can anyone point me to the specific topic(s) I have to learn...
  7. Replies
    18
    Views
    2,567

    Re: Making static library with MinGW

    Thanks.

    Can you point out the topics I have to study?
  8. Replies
    18
    Views
    2,567

    Re: Making static library with MinGW

    Thank you for your answers.

    Paul, does that also apply to functions called statically inside the .o files, or just the ones I call? Because the function I am calling is being executed ok, but the...
  9. Replies
    18
    Views
    2,567

    Re: Making static library with MinGW

    Anyone?
  10. Re: Reading Data from file and manipulating it

    Why is E missing, and why is it only on the D row?
  11. Replies
    8
    Views
    8,939

    Re: How Long does post approval take?

    Thank you very much!
  12. Replies
    8
    Views
    8,939

    Re: How Long does post approval take?

    Sorry for digging out an old thread, but since it is already here I think it is best than creating a new one...

    I've also made a new thread on the C++ (Non Visual) forum almost 24 hours ago, and...
  13. Replies
    18
    Views
    2,567

    Making static library with MinGW

    Hi.

    There is a file compressor called FreeArc (that has GPL code) and a sub project called Unarc (meant for file extraction only) that is free for any use.
    Their source codes can be downloaded...
Results 1 to 13 of 13





Click Here to Expand Forum to Full Width

Featured