Search:

Type: Posts; User: gh0st

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    11,401

    Is static allocation of the struct with: ...

    Is static allocation of the struct with:



    *p_tststructs[10];


    different then dynamic allocation with malloc/realloc the way I use it then ?
  2. Replies
    4
    Views
    11,401

    To malloc or not realloc on struct members

    I got a question about sizing a struct member with malloc or realloc.



    stuct tst{
    int iIndex;
    char *szMember;
    } *p_tststructs;

    int iCounter = 0;
  3. Replies
    1
    Views
    7,942

    I solved it already. I made a mistake by...

    I solved it already.

    I made a mistake by reversing the little endian stuff.

    Solution:




    szHigh[] = {0x7C, 0xF0, 0xC6, 0x01};
  4. Replies
    1
    Views
    7,942

    Hex Time to FileTime

    I am trying to convert a hex date/time value to a date format. I already know how to convert it to a readable format but I can't get it to the filetime format.



    The hex value I got is: 0x60...
  5. Replies
    2
    Views
    2,537

    Thanks for your info. I want my program to handle...

    Thanks for your info. I want my program to handle all files and folder types and not associate it to a specific extension. I'm going to look into DDE now.

    Thanks
  6. Replies
    2
    Views
    2,537

    WM_COPYDATA and mutex selecting multiple files

    Hope someone knows the answer. I am using the following method to select multiple files and folders in explorer and use them as input to my program:

    * Create unique mutex from first program...
  7. Replies
    2
    Views
    1,984

    Thank you very much Ken that was indeed causing...

    Thank you very much Ken that was indeed causing the problem.
  8. Replies
    2
    Views
    1,984

    Multiline Read only Edit

    I got a problem with a multiline read only edit control. I use lcc-win32 as ide and placed a multiline edit control on a dialog. The edit control is set to read only and I create the white background...
Results 1 to 8 of 8