- Timestamp:
- Sep 8, 1999, 1:40:17 PM (26 years ago)
- Location:
- trunk/src/shell32/new
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/new/pidl.cpp
r795 r873 1124 1124 { 1125 1125 IID iid; 1126 CLSIDFromString 16(szGUID,&iid);1126 CLSIDFromStringA(szGUID,&iid); 1127 1127 return _ILCreate(PT_MYCOMP, &iid, sizeof(IID)); 1128 1128 } -
trunk/src/shell32/new/shell32_main.h
r857 r873 23 23 24 24 25 /** 26 * WINE portability macro 27 **/ 28 29 #define VERSION_OsIsUnicode() FALSE 25 30 26 31 /******************************************* -
trunk/src/shell32/new/shellole.cpp
r795 r873 130 130 { 131 131 TRACE("(%p(%s) %p)\n", clsid, clsid, id); 132 return CLSIDFromString 16(clsid, id);132 return CLSIDFromStringA(clsid, id); 133 133 } 134 134 DWORD WINAPI SHCLSIDFromStringW (LPWSTR clsid, CLSID *id) -
trunk/src/shell32/new/shellpath.cpp
r797 r873 7 7 #include <string.h> 8 8 #include <ctype.h> 9 #include <wctype.h> 10 #define HAVE_WCTYPE_H 9 11 #include <odin.h> 10 12
Note:
See TracChangeset
for help on using the changeset viewer.