Search:

Type: Posts; User: davidk

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    1,197

    Please get a good debugging tool (MSVS, GDB) and...

    Please get a good debugging tool (MSVS, GDB) and go through your code line by line. This method will help you to resolve some big mistakes you have done here. Then ask the people what you have missed...
  2. Replies
    5
    Views
    2,579

    Check whether you can compile your program as...

    Check whether you can compile your program as EXE, not LIB. If everything is ok with EXE, then perhaps it is an exporting issue of your code and 3rd party headers. Give some more info about 1-2 exact...
  3. Replies
    5
    Views
    4,905

    It is not possible to separately initialize...

    It is not possible to separately initialize static class member in the global scope of code. But it is possible to allocate your array separately in any function like initialize_pointer() written by...
  4. Replies
    7
    Views
    4,731

    That is good, because one buffer here is better...

    That is good, because one buffer here is better than two.
    But you now have to write


    NumOfBytes = GetPrivateProfileSection("OurApp Update PlugIns", Buf, 2048, m_OldIniPath);
    NumOfBytes +=...
Results 1 to 4 of 4