?
Jo, CreateProcess erwartet aber einen LPSTR
jedoch kann man einen LPCSTR nach LPSTR casten und siehe das es geht :-).
castToLPCSTR = pfadDateiMailer.c_str ();
castToLPSTR =(LPSTR)castToLPCSTR;
ret = CreateProcess (NULL, castToLPSTR ,NULL, NULL, 0, CREATE_NEW_CONSOLE, NULL, NULL, &startupInfo, &processInfo);
Danke
Erion