Hello,
waht I want to do ist qiuet simple
...
I want to read one thing from txt. file
it looks like
\windows\explorer.exe or something like that....
I do this with:
.....
FILE *f;
char zeile[80];
......
and
if ( ( f = fopen("\\Storage Card\\test.txt", "r" ) ) == NULL)
{
fgets(zeile, 80, f);
fclose(f);
}
now I want to use createprocess in this way
CreateProcess(
zeile, NULL,0,0,FALSE,0, 0, 0, NULL, NULL);
but I get the error found 'char *', expected 'const wchar_t *'.
Ok I understand, but how can I solve it?
Michael