Changeset 4561 for trunk/src/shell32/shellpath.c
- Timestamp:
- Nov 6, 2000, 11:20:56 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/shellpath.c
r4121 r4561 1 /* $Id: shellpath.c,v 1. 2 2000-08-30 13:51:02sandervl Exp $ */1 /* $Id: shellpath.c,v 1.3 2000-11-06 10:20:56 sandervl Exp $ */ 2 2 /* 3 3 * Path Functions … … 10 10 #include <odin.h> 11 11 #endif 12 12 13 #include <string.h> 13 14 #include <ctype.h> … … 20 21 #include "windef.h" 21 22 #include "options.h" 23 #include "wine/winestring.h" 22 24 #include "wine/undocshell.h" 23 25 #include "wine/unicode.h" … … 481 483 return TRUE; 482 484 } 485 483 486 #ifdef __WIN32OS2__ 484 487 /************************************************************************* … … 758 761 hRootKey = HKEY_CURRENT_USER; 759 762 strcpy(szValueName, "Programs"); 760 strcpy(szDefaultPath, "Start Menu\\Programs");763 strcpy(szDefaultPath, "Start Menu\\Programs"); 761 764 break; 762 765 … … 781 784 case CSIDL_STARTMENU: 782 785 hRootKey = HKEY_CURRENT_USER; 783 strcpy(szValueName, "Start Menu");784 strcpy(szDefaultPath, "Start Menu");786 strcpy(szValueName, "Start Menu"); 787 strcpy(szDefaultPath, "Start Menu"); 785 788 break; 786 789 787 790 case CSIDL_COMMON_STARTMENU: 788 791 hRootKey = HKEY_LOCAL_MACHINE; 789 strcpy(szValueName, "Common Start Menu");790 strcpy(szDefaultPath, "Start Menu");792 strcpy(szValueName, "Common Start Menu"); 793 strcpy(szDefaultPath, "Start Menu"); 791 794 break; 792 795 793 796 case CSIDL_STARTUP: 794 797 hRootKey = HKEY_CURRENT_USER; 795 strcpy(szValueName, "Start up");796 strcpy(szDefaultPath, "Start Menu\\Programs\\Startup");798 strcpy(szValueName, "StartUp"); 799 strcpy(szDefaultPath, "Start Menu\\Programs\\StartUp"); 797 800 break; 798 801 799 802 case CSIDL_COMMON_STARTUP: 800 803 hRootKey = HKEY_LOCAL_MACHINE; 801 strcpy(szValueName, "Common Start up");802 strcpy(szDefaultPath, "Start Menu\\Programs\\Startup");804 strcpy(szValueName, "Common StartUp"); 805 strcpy(szDefaultPath, "Start Menu\\Programs\\StartUp"); 803 806 break; 804 807
Note:
See TracChangeset
for help on using the changeset viewer.