- Timestamp:
- Jul 21, 2000, 8:30:29 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shlwapi/path.c
r3700 r3879 1 /* $Id: path.c,v 1. 4 2000-06-13 18:14:19 phallerExp $ */1 /* $Id: path.c,v 1.5 2000-07-21 18:30:29 sandervl Exp $ */ 2 2 3 3 /* … … 5 5 * 6 6 * Project Odin Software License can be found in LICENSE.TXT 7 * 8 * 9 * NOTE: SHGetSpecialFolderPathA: StartMenu changed in 'Start Menu' 10 * 7 11 * 8 12 * Copyright 1997 Marcus Meissner … … 1945 1949 hRootKey = HKEY_CURRENT_USER; 1946 1950 strcpy(szValueName, "Programs"); 1947 strcpy(szDefaultPath, "Start Menu\\Programs");1951 strcpy(szDefaultPath, "Start Menu\\Programs"); 1948 1952 break; 1949 1953 … … 1968 1972 case CSIDL_STARTMENU: 1969 1973 hRootKey = HKEY_CURRENT_USER; 1970 strcpy(szValueName, "Start Menu");1971 strcpy(szDefaultPath, "Start Menu");1974 strcpy(szValueName, "Start Menu"); 1975 strcpy(szDefaultPath, "Start Menu"); 1972 1976 break; 1973 1977 1974 1978 case CSIDL_COMMON_STARTMENU: 1975 1979 hRootKey = HKEY_LOCAL_MACHINE; 1976 strcpy(szValueName, "Common StartMenu"); 1977 strcpy(szDefaultPath, "Start Menu");1980 strcpy(szValueName, "Common StartMenu"); //TODO: Start Menu? 1981 strcpy(szDefaultPath, "Start Menu"); 1978 1982 break; 1979 1983 … … 1981 1985 hRootKey = HKEY_CURRENT_USER; 1982 1986 strcpy(szValueName, "Startup"); 1983 strcpy(szDefaultPath, "Start Menu\\Programs\\Startup");1987 strcpy(szDefaultPath, "Start Menu\\Programs\\Startup"); 1984 1988 break; 1985 1989 … … 1987 1991 hRootKey = HKEY_LOCAL_MACHINE; 1988 1992 strcpy(szValueName, "Common Startup"); 1989 strcpy(szDefaultPath, "Start Menu\\Programs\\Startup");1993 strcpy(szDefaultPath, "Start Menu\\Programs\\Startup"); 1990 1994 break; 1991 1995
Note:
See TracChangeset
for help on using the changeset viewer.