Changeset 21855 for branches/gcc-kmk/src/ole32/compobj.c
- Timestamp:
- Dec 6, 2011, 6:19:13 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/ole32/compobj.c
r10625 r21855 507 507 * the string representation and HRESULT 508 508 */ 509 HRESULT WIN E_StringFromCLSID(509 HRESULT WINAPI WINE_StringFromCLSID( 510 510 const CLSID *id, /* [in] GUID to be converted */ 511 511 LPSTR idstr /* [out] pointer to buffer to contain converted guid */ … … 899 899 if (hres) return hres; 900 900 901 buflen = ststg.cbSize. s.LowPart;901 buflen = ststg.cbSize.DUMMYSTRUCTNAME_DOT LowPart; 902 902 buffer = HeapAlloc(GetProcessHeap(),0,buflen); 903 seekto. s.LowPart = 0;904 seekto. s.HighPart = 0;903 seekto.DUMMYSTRUCTNAME_DOT LowPart = 0; 904 seekto.DUMMYSTRUCTNAME_DOT HighPart = 0; 905 905 hres = IStream_Seek(pStm,seekto,SEEK_SET,&newpos); 906 906 if (hres) {
Note:
See TracChangeset
for help on using the changeset viewer.