Changeset 682
- Timestamp:
- Aug 25, 1999, 1:25:47 PM (26 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r679 r682 1 /* $Id: changelog,v 1.13 3 1999-08-25 10:29:08sandervl Exp $ */1 /* $Id: changelog,v 1.134 1999-08-25 11:23:17 sandervl Exp $ */ 2 2 3 3 99-08-25: Sander van Leeuwen <sandervl@xs4all.nl> … … 6 6 Put back handlemanager changes. (i.e. MapViewOfFile) 7 7 - 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 8 13 9 14 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 phallerExp $ */1 /* $Id: disk.cpp,v 1.5 1999-08-25 11:25:47 sandervl Exp $ */ 2 2 3 3 /* … … 23 23 //****************************************************************************** 24 24 //****************************************************************************** 25 BOOL WIN32API SetVolumeLabelW(LP WSTR lpRootPathName, LPWSTR lpVolumeName)25 BOOL WIN32API SetVolumeLabelW(LPCWSTR lpRootPathName, LPCWSTR lpVolumeName) 26 26 { 27 27 char *asciiroot, *asciivolname; … … 29 29 30 30 dprintf(("KERNEL32: OS2SetVolumeLabelW\n")); 31 asciiroot = UnicodeToAsciiString( lpRootPathName);32 asciivolname = UnicodeToAsciiString( lpVolumeName);31 asciiroot = UnicodeToAsciiString((LPWSTR)lpRootPathName); 32 asciivolname = UnicodeToAsciiString((LPWSTR)lpVolumeName); 33 33 rc = O32_SetVolumeLabel(asciiroot, asciivolname); 34 34 FreeAsciiString(asciivolname);
Note:
See TracChangeset
for help on using the changeset viewer.