Search:

Type: Posts; User: oogabooga

Search: Search took 0.03 seconds.

  1. TCHAR is defined as either char if UNICODE is not...

    TCHAR is defined as either char if UNICODE is not defined and wchar_t if UNICODE is defined.

    _t presumably stands for "type".

    To learn windows, you must learn your way around MSDN:
    MSDN...
  2. Since c_str returns a pointer to the raw...

    Since c_str returns a pointer to the raw characters of the string object, you need to define tempString as


    const TCHAR* tempString;
Results 1 to 2 of 2