Search:

Type: Posts; User: Salem

Search: Search took 0.20 seconds.

  1. The "something wrong" would appear to be that you...

    The "something wrong" would appear to be that you don't yet know enough about programming, and all you're doing is copy/pasting likely looking snippets from wherever in the hope that it'll either...
  2. static char buff[MAX_SIZE]; static size_t...

    static char buff[MAX_SIZE];
    static size_t buffUsed = 0;
    static size_t buffFree = MAX_SIZE;
    static int imageReceived = 0;

    ///

    case WM_SOCKET:
    {
    switch(WSAGETSELECTEVENT(lParam))
  3. > chIncomingDataBuffer[iEnd] = '\0'; > ...

    > chIncomingDataBuffer[iEnd] = '\0';
    > if (lstrlen(chIncomingDataBuffer) != 0)
    Well, treating binary image data as a string for one thing is wrong.

    2, as in your previous threads,...
Results 1 to 3 of 3