I have created a module snapshot and I got MODULEENTRY32 struct which contains data, which I would output like this:
_tprintf( TEXT("%6d %-15s %s\n"),pe.th32ProcessID,me.szModule,me.szExePath);
Now lets say I would want to use that path, which is WCHAR me.szExePath and another method requires a path of const *char. How could I handle that, would I need to convert data type?