Ignore:
Timestamp:
Dec 6, 2011, 6:19:13 PM (14 years ago)
Author:
dmik
Message:

Port OLE32 and REGSVR32 to GCC/kBuild.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gcc-kmk/src/ole32/compobj.c

    r10625 r21855  
    507507 *      the string representation and HRESULT
    508508 */
    509 HRESULT WINE_StringFromCLSID(
     509HRESULT WINAPI WINE_StringFromCLSID(
    510510        const CLSID *id,        /* [in] GUID to be converted */
    511511        LPSTR idstr             /* [out] pointer to buffer to contain converted guid */
     
    899899    if (hres) return hres;
    900900
    901     buflen = ststg.cbSize.s.LowPart;
     901    buflen = ststg.cbSize.DUMMYSTRUCTNAME_DOT LowPart;
    902902    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;
    905905    hres = IStream_Seek(pStm,seekto,SEEK_SET,&newpos);
    906906    if (hres) {
Note: See TracChangeset for help on using the changeset viewer.