Desktop Functions: Smart Device Functions:
|
Search Results for "GetProfilesDirectory" in [All]userenv
static extern bool GetProfilesDirectory(StringBuilder path, ref int size);
if (GetProfilesDirectory(path, ref size) )
if (GetProfilesDirectory(path, &size) ) {
MessageBox(NULL, path, "GetProfilesDirectory()", MB_OK);
WINBOOL WINAPI GetProfilesDirectoryA(LPSTR lpProfileDir, LPDWORD lpcchSize);
if (GetProfilesDirectory(path, &size) ) {
MessageBox(NULL, path, "GetProfilesDirectory()", MB_OK); |