Changeset 873 for trunk/src


Ignore:
Timestamp:
Sep 8, 1999, 1:40:17 PM (26 years ago)
Author:
phaller
Message:

.

Location:
trunk/src/shell32/new
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shell32/new/pidl.cpp

    r795 r873  
    11241124{
    11251125        IID     iid;
    1126         CLSIDFromString16(szGUID,&iid);
     1126        CLSIDFromStringA(szGUID,&iid);
    11271127        return _ILCreate(PT_MYCOMP, &iid, sizeof(IID));
    11281128}
  • trunk/src/shell32/new/shell32_main.h

    r857 r873  
    2323
    2424
     25/**
     26 * WINE portability macro
     27 **/
     28
     29#define VERSION_OsIsUnicode() FALSE
    2530
    2631/*******************************************
  • trunk/src/shell32/new/shellole.cpp

    r795 r873  
    130130{
    131131        TRACE("(%p(%s) %p)\n", clsid, clsid, id);
    132         return CLSIDFromString16(clsid, id);
     132        return CLSIDFromStringA(clsid, id);
    133133}
    134134DWORD WINAPI SHCLSIDFromStringW (LPWSTR clsid, CLSID *id)
  • trunk/src/shell32/new/shellpath.cpp

    r797 r873  
    77#include <string.h>
    88#include <ctype.h>
     9#include <wctype.h>
     10#define HAVE_WCTYPE_H
    911#include <odin.h>
    1012
Note: See TracChangeset for help on using the changeset viewer.