Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
int main(int argc, char **argv)
#include <stdio.h>
#include <string.h>
int main(int argc, char **argv)
{
char path[FILENAME_MAX+1];
int pos;
memset(path, 0, (FILENAME_MAX + 1) * sizeof(char));
pos = (strrchr(argv[0], '\\\') - argv[0]) * sizeof(char);
strncpy(path, argv[0], pos);
printf("path: %s\n", path);
return 0;
}
Stimmt.Original geschrieben von HolgerX
Ich hätte wohl sagen sollen, dass ich mit Visual Studio arbeite
DWORD GetModuleFileName(
HMODULE hModule, // handle to module to find filename for
LPTSTR lpFilename, // pointer to buffer to receive module path
DWORD nSize // size of buffer, in characters
);
Wssss?bekomme jetzt auch den Pfad, aber immer eine 2 als CString-Wert, den ich nicht loswerden kann.
Return Values
If the function succeeds, the return value is the length, in characters, of the string copied to the buffer.
If the function fails, the return value is zero. To get extended error information, call GetLastError.