Ignore:
Timestamp:
Nov 6, 2000, 11:20:56 AM (25 years ago)
Author:
sandervl
Message:

merged with latest Wine (11-05-2000)

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:02 sandervl Exp $ */
     1/* $Id: shellpath.c,v 1.3 2000-11-06 10:20:56 sandervl Exp $ */
    22/*
    33 * Path Functions
     
    1010#include <odin.h>
    1111#endif
     12
    1213#include <string.h>
    1314#include <ctype.h>
     
    2021#include "windef.h"
    2122#include "options.h"
     23#include "wine/winestring.h"
    2224#include "wine/undocshell.h"
    2325#include "wine/unicode.h"
     
    481483    return TRUE;
    482484}
     485
    483486#ifdef __WIN32OS2__
    484487/*************************************************************************
     
    758761            hRootKey = HKEY_CURRENT_USER;
    759762            strcpy(szValueName, "Programs");
    760             strcpy(szDefaultPath, "StartMenu\\Programs");
     763            strcpy(szDefaultPath, "Start Menu\\Programs");
    761764            break;
    762765
     
    781784          case CSIDL_STARTMENU:
    782785            hRootKey = HKEY_CURRENT_USER;
    783             strcpy(szValueName, "StartMenu");
    784             strcpy(szDefaultPath, "StartMenu");
     786            strcpy(szValueName, "Start Menu");
     787            strcpy(szDefaultPath, "Start Menu");
    785788            break;
    786789
    787790          case CSIDL_COMMON_STARTMENU:
    788791            hRootKey = HKEY_LOCAL_MACHINE;
    789             strcpy(szValueName, "Common StartMenu");
    790             strcpy(szDefaultPath, "StartMenu");
     792            strcpy(szValueName, "Common Start Menu");
     793            strcpy(szDefaultPath, "Start Menu");
    791794            break;
    792795
    793796          case CSIDL_STARTUP:
    794797            hRootKey = HKEY_CURRENT_USER;
    795             strcpy(szValueName, "Startup");
    796             strcpy(szDefaultPath, "StartMenu\\Programs\\Startup");
     798            strcpy(szValueName, "StartUp");
     799            strcpy(szDefaultPath, "Start Menu\\Programs\\StartUp");
    797800            break;
    798801
    799802          case CSIDL_COMMON_STARTUP:
    800803            hRootKey = HKEY_LOCAL_MACHINE;
    801             strcpy(szValueName, "Common Startup");
    802             strcpy(szDefaultPath, "StartMenu\\Programs\\Startup");
     804            strcpy(szValueName, "Common StartUp");
     805            strcpy(szDefaultPath, "Start Menu\\Programs\\StartUp");
    803806            break;
    804807
Note: See TracChangeset for help on using the changeset viewer.