Changeset 682


Ignore:
Timestamp:
Aug 25, 1999, 1:25:47 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/changelog

    r679 r682  
    1  /* $Id: changelog,v 1.133 1999-08-25 10:29:08 sandervl Exp $ */
     1 /* $Id: changelog,v 1.134 1999-08-25 11:23:17 sandervl Exp $ */
    22
    33 99-08-25: Sander van Leeuwen <sandervl@xs4all.nl>
     
    66                    Put back handlemanager changes. (i.e. MapViewOfFile)
    77        - USER32\NEW: Deleted win32type.h
     8        - ADVAPI32: Fixed some incorrect definitions of security apis
     9        - INCLUDE\WIN: Changed WINE_NAME_AW definition (now you can use
     10                       apis without the 'A' or 'W' suffix)
     11        - INCLUDE: Added makefile for VAC 3.6.5
     12                   To compile use i.e.: nmake DEBUG=1 CCENV=VAC36
    813
    914 99-08-24: Patrick Haller <phaller@gmx.net>
  • trunk/src/kernel32/disk.cpp

    r100 r682  
    1 /* $Id: disk.cpp,v 1.4 1999-06-10 20:47:58 phaller Exp $ */
     1/* $Id: disk.cpp,v 1.5 1999-08-25 11:25:47 sandervl Exp $ */
    22
    33/*
     
    2323//******************************************************************************
    2424//******************************************************************************
    25 BOOL WIN32API SetVolumeLabelW(LPWSTR lpRootPathName, LPWSTR lpVolumeName)
     25BOOL WIN32API SetVolumeLabelW(LPCWSTR lpRootPathName, LPCWSTR lpVolumeName)
    2626{
    2727  char *asciiroot, *asciivolname;
     
    2929
    3030    dprintf(("KERNEL32:  OS2SetVolumeLabelW\n"));
    31     asciiroot    = UnicodeToAsciiString(lpRootPathName);
    32     asciivolname = UnicodeToAsciiString(lpVolumeName);
     31    asciiroot    = UnicodeToAsciiString((LPWSTR)lpRootPathName);
     32    asciivolname = UnicodeToAsciiString((LPWSTR)lpVolumeName);
    3333    rc = O32_SetVolumeLabel(asciiroot, asciivolname);
    3434    FreeAsciiString(asciivolname);
Note: See TracChangeset for help on using the changeset viewer.