Changeset 21855


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

Port OLE32 and REGSVR32 to GCC/kBuild.

Location:
branches/gcc-kmk
Files:
1 added
24 edited
1 moved

Legend:

Unmodified
Added
Removed
  • TabularUnified branches/gcc-kmk/include/win/wine/obj_base.h

    r21493 r21855  
    703703typedef struct IMalloc16 IMalloc16,*LPMALLOC16;
    704704typedef struct IMalloc IMalloc,*LPMALLOC;
     705typedef const IMalloc *LPCMALLOC;
    705706
    706707DEFINE_OLEGUID(IID_IUnknown,            0x00000000L, 0, 0);
  • TabularUnified branches/gcc-kmk/src/Makefile.kmk

    r21849 r21855  
    2828include $(PATH_SUB_CURRENT)/advapi32/Makefile.kmk
    2929include $(PATH_SUB_CURRENT)/rpcrt4/Makefile.kmk
     30include $(PATH_SUB_CURRENT)/oleaut32/Makefile.kmk
     31include $(PATH_SUB_CURRENT)/ole32/Makefile.kmk
    3032
    3133include $(FILE_KBUILD_SUB_FOOTER)
  • TabularUnified branches/gcc-kmk/src/ole32/antimoniker.c

    r8620 r21855  
    281281    /* Normaly the sizemax must be the  size of DWORD ! but I tested this function it ususlly return 16 bytes */
    282282    /* more than the number of bytes used by AntiMoniker::Save function */
    283     pcbSize->s.LowPart =  sizeof(DWORD)+16;
    284 
    285     pcbSize->s.HighPart=0;
     283    pcbSize->DUMMYSTRUCTNAME_DOT LowPart =  sizeof(DWORD)+16;
     284
     285    pcbSize->DUMMYSTRUCTNAME_DOT HighPart=0;
    286286
    287287    return S_OK;
  • TabularUnified branches/gcc-kmk/src/ole32/clipboard.c

    r8620 r21855  
    937937    hStorage = GlobalAlloc(GMEM_SHARE|GMEM_MOVEABLE, 0);
    938938    hr = CreateILockBytesOnHGlobal(hStorage, FALSE, &ptrILockBytes);
    939     hr = StgCreateDocfileOnILockBytes(ptrILockBytes, STGM_SHARE_EXCLUSIVE|STGM_READWRITE, 0, &std.u.pstg);
     939    hr = StgCreateDocfileOnILockBytes(ptrILockBytes, STGM_SHARE_EXCLUSIVE|STGM_READWRITE, 0, &std.DUMMYUNIONNAME_DOT pstg);
    940940
    941941    if (FAILED(hr = IDataObject_GetDataHere(theOleClipboard->pIDataObjectSrc, pFormatetc, &std)))
     
    964964      if (!FAILED(hr = IDataObject_GetData(theOleClipboard->pIDataObjectSrc, &fmt2, &std2)))
    965965      {
    966         mfp = (METAFILEPICT *)GlobalLock(std2.u.hGlobal);
     966        mfp = (METAFILEPICT *)GlobalLock(std2.DUMMYUNIONNAME_DOT hGlobal);
    967967      }
    968968
     
    994994        pdh.dwSize = nSize;
    995995
    996         hr = IStorage_CreateStream(std.u.pstg, name, STGM_CREATE|STGM_SHARE_EXCLUSIVE|STGM_READWRITE, 0, 0, &pStream);
     996        hr = IStorage_CreateStream(std.DUMMYUNIONNAME_DOT pstg, name, STGM_CREATE|STGM_SHARE_EXCLUSIVE|STGM_READWRITE, 0, 0, &pStream);
    997997
    998998        hr = IStream_Write(pStream, &pdh, sizeof(PresentationDataHeader), NULL);
     
    10071007        HeapFree(GetProcessHeap(), 0, mfBits);
    10081008
    1009         GlobalUnlock(std2.u.hGlobal);
    1010 
    1011         ReadClassStg(std.u.pstg, &clsID);
     1009        GlobalUnlock(std2.DUMMYUNIONNAME_DOT hGlobal);
     1010
     1011        ReadClassStg(std.DUMMYUNIONNAME_DOT pstg, &clsID);
    10121012        ProgIDFromCLSID(&clsID, &strProgID);
    10131013
    10141014        WideCharToMultiByte( CP_ACP, 0, strProgID, -1, strOleTypeName, sizeof(strOleTypeName), NULL, NULL );
    1015         OLECONVERT_CreateOleStream(std.u.pstg);
    1016         OLECONVERT_CreateCompObjStream(std.u.pstg, strOleTypeName);
     1015        OLECONVERT_CreateOleStream(std.DUMMYUNIONNAME_DOT pstg);
     1016        OLECONVERT_CreateCompObjStream(std.DUMMYUNIONNAME_DOT pstg, strOleTypeName);
    10171017      }
    10181018    }
     
    10281028    /* To put a copy back on the clipboard */
    10291029
    1030     hStorage = std.u.hGlobal;
     1030    hStorage = std.DUMMYUNIONNAME_DOT hGlobal;
    10311031  }
    10321032
     
    12781278   */
    12791279  pmedium->tymed = (hData == 0) ? TYMED_NULL : TYMED_HGLOBAL;
    1280   pmedium->u.hGlobal = (HGLOBAL)hData;
     1280  pmedium->DUMMYUNIONNAME_DOT hGlobal = (HGLOBAL)hData;
    12811281  pmedium->pUnkForRelease = NULL;
    12821282
  • TabularUnified 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) {
  • TabularUnified branches/gcc-kmk/src/ole32/compobj_private.h

    r9400 r21855  
    3636#include "wtypes.h"
    3737
    38 extern HRESULT WINE_StringFromCLSID(const CLSID *id,LPSTR idstr);
     38extern HRESULT WINAPI CoGetPSClsid(REFIID riid, CLSID *pclsid);
    3939extern HRESULT create_marshalled_proxy(REFCLSID rclsid, REFIID iid, LPVOID *ppv);
    4040
  • TabularUnified branches/gcc-kmk/src/ole32/compositemoniker.c

    r8620 r21855  
    436436        return E_POINTER;
    437437
    438     pcbSize->s.LowPart =0;
    439     pcbSize->s.HighPart=0;
     438    pcbSize->DUMMYSTRUCTNAME_DOT LowPart =0;
     439    pcbSize->DUMMYSTRUCTNAME_DOT HighPart=0;
    440440
    441441    IMoniker_Enum(iface,TRUE,&enumMk);
     
    447447        IMoniker_Release(pmk);
    448448
    449         pcbSize->s.LowPart +=ptmpSize.s.LowPart;
    450         pcbSize->s.HighPart+=ptmpSize.s.HighPart;
     449        pcbSize->DUMMYSTRUCTNAME_DOT LowPart +=ptmpSize.DUMMYSTRUCTNAME_DOT LowPart;
     450        pcbSize->DUMMYSTRUCTNAME_DOT HighPart+=ptmpSize.DUMMYSTRUCTNAME_DOT HighPart;
    451451    }
    452452
  • TabularUnified branches/gcc-kmk/src/ole32/datacache.c

    r9400 r21855  
    700700
    701701    return (elem->type == STGTY_STREAM)
    702         && (elem->cbSize.s.LowPart >= sizeof(PresentationDataHeader))
     702        && (elem->cbSize.DUMMYSTRUCTNAME_DOT LowPart >= sizeof(PresentationDataHeader))
    703703        && (strlenW(name) == 11)
    704704        && (strncmpW(name, OlePres, 8) == 0)
     
    769769                    /* Rewind the stream before returning it. */
    770770                    LARGE_INTEGER offset;
    771                     offset.s.LowPart = 0;
    772                     offset.s.HighPart = 0;
     771                    offset.DUMMYSTRUCTNAME_DOT LowPart = 0;
     772                    offset.DUMMYSTRUCTNAME_DOT HighPart = 0;
    773773                    IStream_Seek(pStm, offset, STREAM_SEEK_SET, NULL);
    774774
     
    839839   * Skip the header
    840840   */
    841   offset.s.HighPart = 0;
    842   offset.s.LowPart  = sizeof(PresentationDataHeader);
     841  offset.DUMMYSTRUCTNAME_DOT HighPart = 0;
     842  offset.DUMMYSTRUCTNAME_DOT LowPart  = sizeof(PresentationDataHeader);
    843843
    844844  hres = IStream_Seek(
     
    848848           NULL);
    849849
    850   streamInfo.cbSize.s.LowPart -= offset.s.LowPart;
     850  streamInfo.cbSize.DUMMYSTRUCTNAME_DOT LowPart -= offset.DUMMYSTRUCTNAME_DOT LowPart;
    851851
    852852  /*
     
    855855  metafileBits = HeapAlloc(GetProcessHeap(),
    856856                           0,
    857                            streamInfo.cbSize.s.LowPart);
     857                           streamInfo.cbSize.DUMMYSTRUCTNAME_DOT LowPart);
    858858
    859859  /*
     
    863863           presStream,
    864864           metafileBits,
    865            streamInfo.cbSize.s.LowPart,
     865           streamInfo.cbSize.DUMMYSTRUCTNAME_DOT LowPart,
    866866           NULL);
    867867
     
    871871  if (SUCCEEDED(hres))
    872872  {
    873     newMetafile = SetMetaFileBitsEx(streamInfo.cbSize.s.LowPart, metafileBits);
     873    newMetafile = SetMetaFileBitsEx(streamInfo.cbSize.DUMMYSTRUCTNAME_DOT LowPart, metafileBits);
    874874  }
    875875
     
    11411141    GlobalUnlock(hGlobalMF);
    11421142
    1143     pmedium->u.hGlobal = hGlobalMF;
     1143    pmedium->DUMMYUNIONNAME_DOT hGlobal = hGlobalMF;
    11441144    pmedium->tymed = TYMED_MFPICT;
    11451145    hrRet = S_OK;
  • TabularUnified branches/gcc-kmk/src/ole32/dbgwrap.cpp

    r8007 r21855  
    1010#include <winnls.h>
    1111#include <ntddk.h>
     12#include "ole32.h"
    1213#include <heapstring.h>
    13 #include "ole32.h"
    1414#include "wine/obj_errorinfo.h"
    1515#include "wine/obj_oleaut.h"
  • TabularUnified branches/gcc-kmk/src/ole32/filemoniker.c

    r9400 r21855  
    452452               len*sizeof(WCHAR);       /* unicde filePath string */
    453453
    454     pcbSize->s.LowPart=sizeMAx;
    455     pcbSize->s.HighPart=0;
     454    pcbSize->DUMMYSTRUCTNAME_DOT LowPart=sizeMAx;
     455    pcbSize->DUMMYSTRUCTNAME_DOT HighPart=0;
    456456
    457457    return S_OK;
  • TabularUnified branches/gcc-kmk/src/ole32/hglobalstream.c

    r9400 r21855  
    279279     * Start the stream at the beginning.
    280280     */
    281     newStream->currentPosition.s.HighPart = 0;
    282     newStream->currentPosition.s.LowPart = 0;
     281    newStream->currentPosition.DUMMYSTRUCTNAME_DOT HighPart = 0;
     282    newStream->currentPosition.DUMMYSTRUCTNAME_DOT LowPart = 0;
    283283
    284284    /*
    285285     * Initialize the size of the stream to the size of the handle.
    286286     */
    287     newStream->streamSize.s.HighPart = 0;
    288     newStream->streamSize.s.LowPart  = GlobalSize(newStream->supportHandle);
     287    newStream->streamSize.DUMMYSTRUCTNAME_DOT HighPart = 0;
     288    newStream->streamSize.DUMMYSTRUCTNAME_DOT LowPart  = GlobalSize(newStream->supportHandle);
    289289  }
    290290
     
    442442   * to read from the block chain
    443443   */
    444   bytesToReadFromBuffer = min( This->streamSize.s.LowPart - This->currentPosition.s.LowPart, cb);
     444  bytesToReadFromBuffer = min( This->streamSize.DUMMYSTRUCTNAME_DOT LowPart - This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart, cb);
    445445
    446446  /*
     
    449449  supportBuffer = GlobalLock(This->supportHandle);
    450450
    451   memcpy(pv, (char *) supportBuffer+This->currentPosition.s.LowPart, bytesToReadFromBuffer);
     451  memcpy(pv, (char *) supportBuffer+This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart, bytesToReadFromBuffer);
    452452
    453453  /*
    454454   * Move the current position to the new position
    455455   */
    456   This->currentPosition.s.LowPart+=bytesToReadFromBuffer;
     456  This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart+=bytesToReadFromBuffer;
    457457
    458458  /*
     
    515515  else
    516516  {
    517     newSize.s.HighPart = 0;
    518     newSize.s.LowPart = This->currentPosition.s.LowPart + cb;
     517    newSize.DUMMYSTRUCTNAME_DOT HighPart = 0;
     518    newSize.DUMMYSTRUCTNAME_DOT LowPart = This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart + cb;
    519519  }
    520520
     
    522522   * Verify if we need to grow the stream
    523523   */
    524   if (newSize.s.LowPart > This->streamSize.s.LowPart)
     524  if (newSize.DUMMYSTRUCTNAME_DOT LowPart > This->streamSize.DUMMYSTRUCTNAME_DOT LowPart)
    525525  {
    526526    /* grow stream */
     
    533533  supportBuffer = GlobalLock(This->supportHandle);
    534534
    535   memcpy((char *) supportBuffer+This->currentPosition.s.LowPart, pv, cb);
     535  memcpy((char *) supportBuffer+This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart, pv, cb);
    536536
    537537  /*
    538538   * Move the current position to the new position
    539539   */
    540   This->currentPosition.s.LowPart+=cb;
     540  This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart+=cb;
    541541
    542542  /*
     
    572572
    573573  TRACE("(%p, %ld, %ld, %p)\n", iface,
    574         dlibMove.s.LowPart, dwOrigin, plibNewPosition);
     574        dlibMove.DUMMYSTRUCTNAME_DOT LowPart, dwOrigin, plibNewPosition);
    575575
    576576  /*
     
    581581  {
    582582    case STREAM_SEEK_SET:
    583       newPosition.s.HighPart = 0;
    584       newPosition.s.LowPart = 0;
     583      newPosition.DUMMYSTRUCTNAME_DOT HighPart = 0;
     584      newPosition.DUMMYSTRUCTNAME_DOT LowPart = 0;
    585585      break;
    586586    case STREAM_SEEK_CUR:
     
    627627  HGLOBALStreamImpl* const This=(HGLOBALStreamImpl*)iface;
    628628
    629   TRACE("(%p, %ld)\n", iface, libNewSize.s.LowPart);
     629  TRACE("(%p, %ld)\n", iface, libNewSize.DUMMYSTRUCTNAME_DOT LowPart);
    630630
    631631  /*
    632632   * As documented.
    633633   */
    634   if (libNewSize.s.HighPart != 0)
     634  if (libNewSize.DUMMYSTRUCTNAME_DOT HighPart != 0)
    635635    return STG_E_INVALIDFUNCTION;
    636636
    637   if (This->streamSize.s.LowPart == libNewSize.s.LowPart)
     637  if (This->streamSize.DUMMYSTRUCTNAME_DOT LowPart == libNewSize.DUMMYSTRUCTNAME_DOT LowPart)
    638638    return S_OK;
    639639
     
    642642   */
    643643  This->supportHandle = GlobalReAlloc(This->supportHandle,
    644                                       libNewSize.s.LowPart,
     644                                      libNewSize.DUMMYSTRUCTNAME_DOT LowPart,
    645645                                      0);
    646646
    647   This->streamSize.s.LowPart = libNewSize.s.LowPart;
     647  This->streamSize.DUMMYSTRUCTNAME_DOT LowPart = libNewSize.DUMMYSTRUCTNAME_DOT LowPart;
    648648
    649649  return S_OK;
     
    671671
    672672  TRACE("(%p, %p, %ld, %p, %p)\n", iface, pstm,
    673         cb.s.LowPart, pcbRead, pcbWritten);
     673        cb.DUMMYSTRUCTNAME_DOT LowPart, pcbRead, pcbWritten);
    674674
    675675  /*
     
    679679    return STG_E_INVALIDPOINTER;
    680680
    681   totalBytesRead.s.LowPart = totalBytesRead.s.HighPart = 0;
    682   totalBytesWritten.s.LowPart = totalBytesWritten.s.HighPart = 0;
     681  totalBytesRead.DUMMYSTRUCTNAME_DOT LowPart = totalBytesRead.DUMMYSTRUCTNAME_DOT HighPart = 0;
     682  totalBytesWritten.DUMMYSTRUCTNAME_DOT LowPart = totalBytesWritten.DUMMYSTRUCTNAME_DOT HighPart = 0;
    683683
    684684  /*
     
    687687   * implementation will do the job
    688688   */
    689   while ( cb.s.LowPart > 0 )
    690   {
    691     if ( cb.s.LowPart >= 128 )
     689  while ( cb.DUMMYSTRUCTNAME_DOT LowPart > 0 )
     690  {
     691    if ( cb.DUMMYSTRUCTNAME_DOT LowPart >= 128 )
    692692      copySize = 128;
    693693    else
    694       copySize = cb.s.LowPart;
     694      copySize = cb.DUMMYSTRUCTNAME_DOT LowPart;
    695695
    696696    IStream_Read(iface, tmpBuffer, copySize, &bytesRead);
    697697
    698     totalBytesRead.s.LowPart += bytesRead;
     698    totalBytesRead.DUMMYSTRUCTNAME_DOT LowPart += bytesRead;
    699699
    700700    IStream_Write(pstm, tmpBuffer, bytesRead, &bytesWritten);
    701701
    702     totalBytesWritten.s.LowPart += bytesWritten;
     702    totalBytesWritten.DUMMYSTRUCTNAME_DOT LowPart += bytesWritten;
    703703
    704704    /*
     
    712712
    713713    if (bytesRead!=copySize)
    714       cb.s.LowPart = 0;
     714      cb.DUMMYSTRUCTNAME_DOT LowPart = 0;
    715715    else
    716       cb.s.LowPart -= bytesRead;
     716      cb.DUMMYSTRUCTNAME_DOT LowPart -= bytesRead;
    717717  }
    718718
     
    722722  if (pcbRead)
    723723  {
    724     pcbRead->s.LowPart = totalBytesRead.s.LowPart;
    725     pcbRead->s.HighPart = totalBytesRead.s.HighPart;
     724    pcbRead->DUMMYSTRUCTNAME_DOT LowPart = totalBytesRead.DUMMYSTRUCTNAME_DOT LowPart;
     725    pcbRead->DUMMYSTRUCTNAME_DOT HighPart = totalBytesRead.DUMMYSTRUCTNAME_DOT HighPart;
    726726  }
    727727
    728728  if (pcbWritten)
    729729  {
    730     pcbWritten->s.LowPart = totalBytesWritten.s.LowPart;
    731     pcbWritten->s.HighPart = totalBytesWritten.s.HighPart;
     730    pcbWritten->DUMMYSTRUCTNAME_DOT LowPart = totalBytesWritten.DUMMYSTRUCTNAME_DOT LowPart;
     731    pcbWritten->DUMMYSTRUCTNAME_DOT HighPart = totalBytesWritten.DUMMYSTRUCTNAME_DOT HighPart;
    732732  }
    733733  return hr;
  • TabularUnified branches/gcc-kmk/src/ole32/ifs.c

    r10623 r21855  
    256256 *      win2k:  size originally requested !!! (allocated on 8 byte boundarys)
    257257 */
    258 static DWORD WINAPI IMalloc_fnGetSize(LPMALLOC iface,LPVOID pv) {
     258static DWORD WINAPI IMalloc_fnGetSize(LPCMALLOC iface,LPVOID pv) {
    259259
    260260        DWORD cb;
     
    281281 * IMalloc32_DidAlloc [VTABLE]
    282282 */
    283 static INT WINAPI IMalloc_fnDidAlloc(LPMALLOC iface,LPVOID pv) {
     283static INT WINAPI IMalloc_fnDidAlloc(LPCMALLOC iface,LPVOID pv) {
    284284
    285285        BOOL fSpyed = 0;
     
    305305 * IMalloc32_HeapMinimize [VTABLE]
    306306 */
    307 static VOID WINAPI IMalloc_fnHeapMinimize(LPMALLOC iface) {
     307static LPVOID WINAPI IMalloc_fnHeapMinimize(LPMALLOC iface) {
    308308        TRACE("()\n");
    309309
  • TabularUnified branches/gcc-kmk/src/ole32/initterm.cpp

    r21842 r21855  
    11/*
    2  * DLL entry point
     2 * OLE32 DLL entry point
    33 *
    44 * Copyright 1998 Sander van Leeuwen
    55 * Copyright 1998 Peter Fitzsimmons
    66 *
    7  *
    87 * Project Odin Software License can be found in LICENSE.TXT
    9  *
    108 */
    119
    12 /*-------------------------------------------------------------*/
    13 /* INITERM.C -- Source for a custom dynamic link library       */
    14 /*              initialization and termination (_DLL_InitTerm) */
    15 /*              function.                                      */
    16 /*                                                             */
    17 /* When called to perform initialization, this sample function */
    18 /* gets storage for an array of integers, and initializes its  */
    19 /* elements with random integers.  At termination time, it     */
    20 /* frees the array.  Substitute your own special processing.   */
    21 /*-------------------------------------------------------------*/
    22 
    23 
    24 /* Include files */
    2510#define  INCL_DOSMODULEMGR
    2611#define  INCL_DOSPROCESS
     
    3621#include <initdll.h>
    3722
    38 extern "C" {
    39  //Win32 resource table (produced by wrc)
    40  extern DWORD ole32os2_PEResTab;
    41 }
     23// Win32 resource table (produced by wrc)
     24extern DWORD ole32_PEResTab;
     25
    4226static HMODULE dllHandle = 0;
    4327
    4428BOOL WINAPI OLE32_DllEntryPoint(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad);
    45 //******************************************************************************
    46 //******************************************************************************
     29
    4730BOOL WINAPI LibMainOLE32(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
    4831{
     
    6043   return FALSE;
    6144}
    62 /****************************************************************************/
    63 /* _DLL_InitTerm is the function that gets called by the operating system   */
    64 /* loader when it loads and frees this DLL for each process that accesses   */
    65 /* this DLL.  However, it only gets called the first time the DLL is loaded */
    66 /* and the last time it is freed for a particular process.  The system      */
    67 /* linkage convention MUST be used because the operating system loader is   */
    68 /* calling this function.                                                   */
    69 /****************************************************************************/
    70 ULONG APIENTRY inittermOle32(unsigned long hModule, unsigned long ulFlag)
     45
     46ULONG SYSTEM DLL_InitOle32(ULONG hModule)
    7147{
    72    size_t i;
    73    APIRET rc;
     48    CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed  98-03-18 05:28:48*/
    7449
    75    /*-------------------------------------------------------------------------*/
    76    /* If ulFlag is zero then the DLL is being loaded so initialization should */
    77    /* be performed.  If ulFlag is 1 then the DLL is being freed so            */
    78    /* termination should be performed.                                        */
    79    /*-------------------------------------------------------------------------*/
     50    dllHandle = RegisterLxDll(hModule, LibMainOLE32, (PVOID)&ole32_PEResTab);
     51    if (dllHandle == 0)
     52           return -1;
    8053
    81    switch (ulFlag) {
    82       case 0 :
    83       {
    84          dllHandle = RegisterLxDll(hModule, LibMainOLE32, (PVOID)&ole32os2_PEResTab);
    85          if(dllHandle == 0)
    86                 return 0UL;
     54    return 0;
     55}
    8756
    88          break;
    89       }
    90       case 1 :
    91          if(dllHandle) {
    92                 UnregisterLxDll(dllHandle);
    93          }
    94          break;
     57void SYSTEM DLL_TermOle32(ULONG hModule)
     58{
     59    if (dllHandle)
     60       UnregisterLxDll(dllHandle);
     61}
    9562
    96       default  :
    97          return 0UL;
    98    }
     63ULONG SYSTEM DLL_Init(ULONG hModule)
     64{
     65    if (DLL_InitDefault(hModule) == -1)
     66        return -1;
     67    return DLL_InitOle32(hModule);
     68}
    9969
    100    /***********************************************************/
    101    /* A non-zero value must be returned to indicate success.  */
    102    /***********************************************************/
    103    return 1UL;
     70void SYSTEM DLL_Term(ULONG hModule)
     71{
     72    DLL_TermOle32(hModule);
     73    DLL_TermDefault(hModule);
    10474}
    105 //******************************************************************************
    106 //******************************************************************************
  • TabularUnified branches/gcc-kmk/src/ole32/itemmoniker.c

    r9400 r21855  
    357357    /* for more details see ItemMonikerImpl_Save coments */
    358358
    359     pcbSize->s.LowPart =  sizeof(DWORD) + /* DWORD which contains delimiter length */
     359    pcbSize->DUMMYSTRUCTNAME_DOT LowPart =  sizeof(DWORD) + /* DWORD which contains delimiter length */
    360360                        delimiterLength + /* item delimiter string */
    361361                        sizeof(DWORD) + /* DWORD which contains item name length */
     
    363363                        34; /* this constant was added ! because when I tested this function it usually */
    364364                            /*  returns 34 bytes more than the number of bytes used by IMoniker::Save function */
    365     pcbSize->s.HighPart=0;
     365    pcbSize->DUMMYSTRUCTNAME_DOT HighPart=0;
    366366
    367367    return S_OK;
  • TabularUnified branches/gcc-kmk/src/ole32/memlockbytes.c

    r8620 r21855  
    234234     * Initialize the size of the array to the size of the handle.
    235235     */
    236     newLockBytes->byteArraySize.s.HighPart = 0;
    237     newLockBytes->byteArraySize.s.LowPart  = GlobalSize(
     236    newLockBytes->byteArraySize.DUMMYSTRUCTNAME_DOT HighPart = 0;
     237    newLockBytes->byteArraySize.DUMMYSTRUCTNAME_DOT LowPart  = GlobalSize(
    238238                                              newLockBytes->supportHandle);
    239239  }
     
    384384   * Make sure the offset is valid.
    385385   */
    386   if (ulOffset.s.LowPart > This->byteArraySize.s.LowPart)
     386  if (ulOffset.DUMMYSTRUCTNAME_DOT LowPart > This->byteArraySize.DUMMYSTRUCTNAME_DOT LowPart)
    387387    return E_FAIL;
    388388
     
    391391   * to read.
    392392   */
    393   bytesToReadFromBuffer = min(This->byteArraySize.s.LowPart -
    394                               ulOffset.s.LowPart, cb);
     393  bytesToReadFromBuffer = min(This->byteArraySize.DUMMYSTRUCTNAME_DOT LowPart -
     394                              ulOffset.DUMMYSTRUCTNAME_DOT LowPart, cb);
    395395
    396396  /*
     
    400400
    401401  memcpy(pv,
    402          (char *) supportBuffer + ulOffset.s.LowPart,
     402         (char *) supportBuffer + ulOffset.DUMMYSTRUCTNAME_DOT LowPart,
    403403         bytesToReadFromBuffer);
    404404
     
    459459  else
    460460  {
    461     newSize.s.HighPart = 0;
    462     newSize.s.LowPart = ulOffset.s.LowPart + cb;
     461    newSize.DUMMYSTRUCTNAME_DOT HighPart = 0;
     462    newSize.DUMMYSTRUCTNAME_DOT LowPart = ulOffset.DUMMYSTRUCTNAME_DOT LowPart + cb;
    463463  }
    464464
     
    466466   * Verify if we need to grow the stream
    467467   */
    468   if (newSize.s.LowPart > This->byteArraySize.s.LowPart)
     468  if (newSize.DUMMYSTRUCTNAME_DOT LowPart > This->byteArraySize.DUMMYSTRUCTNAME_DOT LowPart)
    469469  {
    470470    /* grow stream */
     
    478478  supportBuffer = GlobalLock(This->supportHandle);
    479479
    480   memcpy((char *) supportBuffer + ulOffset.s.LowPart, pv, cb);
     480  memcpy((char *) supportBuffer + ulOffset.DUMMYSTRUCTNAME_DOT LowPart, pv, cb);
    481481
    482482  /*
     
    519519   * As documented.
    520520   */
    521   if (libNewSize.s.HighPart != 0)
     521  if (libNewSize.DUMMYSTRUCTNAME_DOT HighPart != 0)
    522522    return STG_E_INVALIDFUNCTION;
    523523
    524   if (This->byteArraySize.s.LowPart == libNewSize.s.LowPart)
     524  if (This->byteArraySize.DUMMYSTRUCTNAME_DOT LowPart == libNewSize.DUMMYSTRUCTNAME_DOT LowPart)
    525525    return S_OK;
    526526
     
    529529   */
    530530  This->supportHandle = GlobalReAlloc(This->supportHandle,
    531                                       libNewSize.s.LowPart,
     531                                      libNewSize.DUMMYSTRUCTNAME_DOT LowPart,
    532532                                      0);
    533533
     
    535535    return STG_E_MEDIUMFULL;
    536536
    537   This->byteArraySize.s.LowPart = libNewSize.s.LowPart;
     537  This->byteArraySize.DUMMYSTRUCTNAME_DOT LowPart = libNewSize.DUMMYSTRUCTNAME_DOT LowPart;
    538538
    539539  return S_OK;
  • TabularUnified branches/gcc-kmk/src/ole32/ole2.c

    r21634 r21855  
    15451545    {
    15461546      if ( (pmedium->pUnkForRelease==0) &&
    1547            (pmedium->u.hGlobal!=0) )
    1548         GlobalFree(pmedium->u.hGlobal);
    1549 
    1550       pmedium->u.hGlobal = 0;
     1547           (pmedium->DUMMYUNIONNAME_DOT hGlobal!=0) )
     1548        GlobalFree(pmedium->DUMMYUNIONNAME_DOT hGlobal);
     1549
     1550      pmedium->DUMMYUNIONNAME_DOT hGlobal = 0;
    15511551      break;
    15521552    }
    15531553    case TYMED_FILE:
    15541554    {
    1555       if (pmedium->u.lpszFileName!=0)
     1555      if (pmedium->DUMMYUNIONNAME_DOT lpszFileName!=0)
    15561556      {
    15571557        if (pmedium->pUnkForRelease==0)
    15581558        {
    1559           DeleteFileW(pmedium->u.lpszFileName);
     1559          DeleteFileW(pmedium->DUMMYUNIONNAME_DOT lpszFileName);
    15601560        }
    15611561
    1562         CoTaskMemFree(pmedium->u.lpszFileName);
     1562        CoTaskMemFree(pmedium->DUMMYUNIONNAME_DOT lpszFileName);
    15631563      }
    15641564
    1565       pmedium->u.lpszFileName = 0;
     1565      pmedium->DUMMYUNIONNAME_DOT lpszFileName = 0;
    15661566      break;
    15671567    }
    15681568    case TYMED_ISTREAM:
    15691569    {
    1570       if (pmedium->u.pstm!=0)
     1570      if (pmedium->DUMMYUNIONNAME_DOT pstm!=0)
    15711571      {
    1572         IStream_Release(pmedium->u.pstm);
     1572        IStream_Release(pmedium->DUMMYUNIONNAME_DOT pstm);
    15731573      }
    15741574
    1575       pmedium->u.pstm = 0;
     1575      pmedium->DUMMYUNIONNAME_DOT pstm = 0;
    15761576      break;
    15771577    }
    15781578    case TYMED_ISTORAGE:
    15791579    {
    1580       if (pmedium->u.pstg!=0)
     1580      if (pmedium->DUMMYUNIONNAME_DOT pstg!=0)
    15811581      {
    1582         IStorage_Release(pmedium->u.pstg);
     1582        IStorage_Release(pmedium->DUMMYUNIONNAME_DOT pstg);
    15831583      }
    15841584
    1585       pmedium->u.pstg = 0;
     1585      pmedium->DUMMYUNIONNAME_DOT pstg = 0;
    15861586      break;
    15871587    }
     
    15891589    {
    15901590      if ( (pmedium->pUnkForRelease==0) &&
    1591            (pmedium->u.hGlobal!=0) )
    1592         DeleteObject(pmedium->u.hGlobal);
    1593 
    1594       pmedium->u.hGlobal = 0;
     1591           (pmedium->DUMMYUNIONNAME_DOT hGlobal!=0) )
     1592        DeleteObject(pmedium->DUMMYUNIONNAME_DOT hGlobal);
     1593
     1594      pmedium->DUMMYUNIONNAME_DOT hGlobal = 0;
    15951595      break;
    15961596    }
     
    15981598    {
    15991599      if ( (pmedium->pUnkForRelease==0) &&
    1600            (pmedium->u.hMetaFilePict!=0) )
     1600           (pmedium->DUMMYUNIONNAME_DOT hMetaFilePict!=0) )
    16011601      {
    1602         LPMETAFILEPICT pMP = GlobalLock(pmedium->u.hGlobal);
     1602        LPMETAFILEPICT pMP = GlobalLock(pmedium->DUMMYUNIONNAME_DOT hGlobal);
    16031603        DeleteMetaFile(pMP->hMF);
    1604         GlobalUnlock(pmedium->u.hGlobal);
    1605         GlobalFree(pmedium->u.hGlobal);
     1604        GlobalUnlock(pmedium->DUMMYUNIONNAME_DOT hGlobal);
     1605        GlobalFree(pmedium->DUMMYUNIONNAME_DOT hGlobal);
    16061606      }
    16071607
    1608       pmedium->u.hMetaFilePict = 0;
     1608      pmedium->DUMMYUNIONNAME_DOT hMetaFilePict = 0;
    16091609      break;
    16101610    }
     
    16121612    {
    16131613      if ( (pmedium->pUnkForRelease==0) &&
    1614            (pmedium->u.hEnhMetaFile!=0) )
     1614           (pmedium->DUMMYUNIONNAME_DOT hEnhMetaFile!=0) )
    16151615      {
    1616         DeleteEnhMetaFile(pmedium->u.hEnhMetaFile);
     1616        DeleteEnhMetaFile(pmedium->DUMMYUNIONNAME_DOT hEnhMetaFile);
    16171617      }
    16181618
    1619       pmedium->u.hEnhMetaFile = 0;
     1619      pmedium->DUMMYUNIONNAME_DOT hEnhMetaFile = 0;
    16201620      break;
    16211621    }
     
    29462946                 && (This->pFormatEtc[i].tymed == pformatetcIn->tymed))
    29472947            {
    2948             pmedium->u.hGlobal = This->pStgMedium[i].u.hGlobal;
     2948            pmedium->DUMMYUNIONNAME_DOT hGlobal = This->pStgMedium[i].DUMMYUNIONNAME_DOT hGlobal;
    29492949                break;
    29502950            }
    29512951        }
    2952         if (pmedium->u.hGlobal)
     2952        if (pmedium->DUMMYUNIONNAME_DOT hGlobal)
    29532953        {
    29542954            pmedium->tymed = TYMED_HGLOBAL;
     
    32653265    fe.tymed    = TYMED_HGLOBAL;
    32663266
    3267     medium.u.hGlobal      = hDrop;
     3267    medium.DUMMYUNIONNAME_DOT hGlobal      = hDrop;
    32683268    medium.tymed          = TYMED_HGLOBAL;
    32693269    medium.pUnkForRelease = NULL;
     
    34193419    LPVOID  lpData;
    34203420    DROPFILES *lpDrop;
    3421     LPSTR     *lpStringData;
     3421    LPSTR     lpStringData;
    34223422    ICOM_THIS(IDropTargetImpl,iface);
    34233423    DWORD   supportedformats[] = {CF_HDROP, CF_TEXT};
     
    34633463            continue;
    34643464        }
    3465         size = GlobalSize(This->medium.u.hGlobal);
     3465        size = GlobalSize(This->medium.DUMMYUNIONNAME_DOT hGlobal);
    34663466        if(size == 0) {
    3467             dprintf(("GlobalSize failed for %x", This->medium.u.hGlobal));
     3467            dprintf(("GlobalSize failed for %x", This->medium.DUMMYUNIONNAME_DOT hGlobal));
    34683468            ReleaseStgMedium(&This->medium);
    34693469            return E_OUTOFMEMORY;
    34703470        }
    3471         dprintf(("handle %x size %d, format %x tymed %x", This->medium.u.hGlobal, size, This->format.cfFormat, This->format.tymed));
     3471        dprintf(("handle %x size %d, format %x tymed %x", This->medium.DUMMYUNIONNAME_DOT hGlobal, size, This->format.cfFormat, This->format.tymed));
    34723472
    34733473        if(size == 1) {//empty string; use previous data
     
    34773477                 return E_OUTOFMEMORY;
    34783478             }
    3479              This->medium.u.hGlobal = This->hDndData;
     3479             This->medium.DUMMYUNIONNAME_DOT hGlobal = This->hDndData;
    34803480
    34813481             dprintf(("Reuse old global handle %x", This->hDndData));
    3482              size = GlobalSize(This->medium.u.hGlobal);
     3482             size = GlobalSize(This->medium.DUMMYUNIONNAME_DOT hGlobal);
    34833483             if(size == 0) {
    3484                  dprintf(("GlobalSize failed for %x", This->medium.u.hGlobal));
     3484                 dprintf(("GlobalSize failed for %x", This->medium.DUMMYUNIONNAME_DOT hGlobal));
    34853485                 ReleaseStgMedium(&This->medium);
    34863486                 return E_OUTOFMEMORY;
    34873487             }
    3488              dprintf(("handle %x size %d, format %x tymed %x", This->medium.u.hGlobal, size, This->format.cfFormat, This->format.tymed));
     3488             dprintf(("handle %x size %d, format %x tymed %x", This->medium.DUMMYUNIONNAME_DOT hGlobal, size, This->format.cfFormat, This->format.tymed));
    34893489        }
    3490         else This->hDndData = This->medium.u.hGlobal;
     3490        else This->hDndData = This->medium.DUMMYUNIONNAME_DOT hGlobal;
    34913491
    34923492        This->lpDnDData = (LPVOID)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
     
    35003500            return E_OUTOFMEMORY;
    35013501        }
    3502         lpData = GlobalLock(This->medium.u.hGlobal);
     3502        lpData = GlobalLock(This->medium.DUMMYUNIONNAME_DOT hGlobal);
    35033503
    35043504        if(This->format.cfFormat == CF_HDROP) {
     
    35213521        }
    35223522        dprintf(("Drop string %s", This->lpOS2StringData));
    3523         GlobalUnlock(This->medium.u.hGlobal);
     3523        GlobalUnlock(This->medium.DUMMYUNIONNAME_DOT hGlobal);
    35243524
    35253525        This->pt = pt;
  • TabularUnified branches/gcc-kmk/src/ole32/ole2impl.c

    r8441 r21855  
    132132          /* Create ILock bytes */
    133133
    134           hr1 = CreateILockBytesOnHGlobal(std.u.hGlobal, FALSE, &ptrILockBytes);
     134          hr1 = CreateILockBytesOnHGlobal(std.DUMMYUNIONNAME_DOT hGlobal, FALSE, &ptrILockBytes);
    135135
    136136          /* Open storage on the ILock bytes */
  • TabularUnified branches/gcc-kmk/src/ole32/ole32.def

    r9400 r21855  
    55
    66EXPORTS
    7     BindMoniker                = _BindMoniker@16             @1
    8     CLSIDFromProgID            = _CLSIDFromProgID@8          @2
    9     CLSIDFromString            = _CLSIDFromString@8          @3
    10     CoBuildVersion             = _CoBuildVersion@0           @4
    11     CoCreateFreeThreadedMarshaler  = _CoCreateFreeThreadedMarshaler@8  @5
    12     CoCreateGuid               = _CoCreateGuid@4             @6
    13     CoCreateInstance           = _CoCreateInstance@20        @7
    14     CoDisconnectObject         = _CoDisconnectObject@8       @8
    15     CoDosDateTimeToFileTime    = _CoDosDateTimeToFileTime@12 @9
    16     CoFileTimeNow              = _CoFileTimeNow@4            @10
    17     CoFileTimeToDosDateTime    = _CoFileTimeToDosDateTime@12 @11
    18     CoFreeAllLibraries         = _CoFreeAllLibraries@0       @12
    19     CoFreeLibrary              = _CoFreeLibrary@4            @13
    20     CoFreeUnusedLibraries      = _CoFreeUnusedLibraries@0    @14
    21     CoGetCallerTID             = _CoGetCallerTID@0           @15
    22     CoGetClassObject           = _CoGetClassObject@20        @16
    23     CoGetCurrentLogicalThreadId  = _CoGetCurrentLogicalThreadId@0  @17
    24     CoGetCurrentProcess        = _CoGetCurrentProcess@0      @18
    25     CoGetInterfaceAndReleaseStream  = _CoGetInterfaceAndReleaseStream@12 @19
    26     CoGetMalloc                = _CoGetMalloc@8              @20
    27     CoGetMarshalSizeMax        = _CoGetMarshalSizeMax@24     @21
    28     CoGetPSClsid               = _CoGetPSClsid@8             @22
    29     CoGetStandardMarshal       = _CoGetStandardMarshal@24    @23
    30     CoGetState                 = _CoGetState@0               @24
    31     CoGetTreatAsClass          = _CoGetTreatAsClass@8        @25
    32     CoInitialize               = _CoInitialize@4             @26
    33     CoInitializeWOW            = _CoInitializeWOW@8          @27
    34     CoIsHandlerConnected       = _CoIsHandlerConnected@4     @28
    35     CoIsOle1Class              = _CoIsOle1Class@4            @29
    36     CoLoadLibrary              = _CoLoadLibrary@8            @30
    37     CoLockObjectExternal       = _CoLockObjectExternal@12    @31
    38     CoMarshalHresult           = _CoMarshalHresult@8         @32
    39     CoMarshalInterThreadInterfaceInStream  = _CoMarshalInterThreadInterfaceInStream@12 @33
    40     CoMarshalInterface         = _CoMarshalInterface@24      @34
    41     CoQueryReleaseObject       = _CoQueryReleaseObject@0     @35
    42     CoRegisterClassObject      = _CoRegisterClassObject@20  @36
    43     CoRegisterMallocSpy        = _CoRegisterMallocSpy@4      @37
    44     CoRegisterMessageFilter    = _CoRegisterMessageFilter@8  @38
    45     CoReleaseMarshalData       = _CoReleaseMarshalData@4     @39
    46     CoRevokeClassObject        = _CoRevokeClassObject@4      @40
    47     CoRevokeMallocSpy          = _CoRevokeMallocSpy@0        @41
    48     CoSetState                 = _CoSetState@4               @42
    49     CoTaskMemAlloc             = _CoTaskMemAlloc@4           @43
    50     CoTaskMemFree              = _CoTaskMemFree@4            @44
    51     CoTaskMemRealloc           = _CoTaskMemRealloc@8         @45
    52     CoTreatAsClass             = _CoTreatAsClass@8           @46
    53     CoUninitialize             = _CoUninitialize@0           @47
    54     CoUnloadingWOW             = _CoUnloadingWOW@0           @48
    55     CoUnmarshalHresult         = _CoUnmarshalHresult@8       @49
    56     CoUnmarshalInterface       = _CoUnmarshalInterface@12    @50
    57     CreateAntiMoniker          = _CreateAntiMoniker@4        @51
    58     CreateBindCtx              = _CreateBindCtx@8            @52
    59     CreateDataAdviseHolder     = _CreateDataAdviseHolder@4  @53
    60     CreateDataCache            = _CreateDataCache@16         @54
    61     CreateFileMoniker          = _CreateFileMoniker@8        @55
    62     CreateGenericComposite     = _CreateGenericComposite@12  @56
    63     CreateILockBytesOnHGlobal  = _CreateILockBytesOnHGlobal@12 @57
    64     CreateItemMoniker          = _CreateItemMoniker@12       @58
    65     CreateOleAdviseHolder      = _CreateOleAdviseHolder@4    @59
    66     CreatePointerMoniker       = _CreatePointerMoniker@8     @60
    67     CreateStreamOnHGlobal      = _CreateStreamOnHGlobal@12  @61
    68     DllDebugObjectRPCHook      = _DllDebugObjectRPCHook@0    @62
    69     DllGetClassObject          = _OLE32_DllGetClassObject@12       @63
    70     DllGetClassObjectWOW       = _DllGetClassObjectWOW@0     @64
    71     DoDragDrop                 = _DoDragDrop@16              @65
    72     EnableHookObject           = _EnableHookObject@0         @66
    73     GetClassFile               = _GetClassFile@8             @67
    74     GetConvertStg              = _GetConvertStg@4            @68
    75     GetDocumentBitStg          = _GetDocumentBitStg@0        @69
    76     GetHGlobalFromILockBytes   = _GetHGlobalFromILockBytes@8  @70
    77     GetHGlobalFromStream       = _GetHGlobalFromStream@8     @71
    78     GetHookInterface           = _GetHookInterface@0         @72
    79     GetRunningObjectTable      = _GetRunningObjectTable@8    @73
    80     IIDFromString              = _CLSIDFromString@8          @74
    81     IsAccelerator              = _IsAccelerator@16           @75
    82     IsEqualGUID                = _IsEqualGUID@8              @76
    83     IsValidIid                 = _IsValidIid@4               @77
    84     IsValidInterface           = _IsValidInterface@4         @78
    85     IsValidPtrIn               = _IsValidPtrIn@4             @79
    86     IsValidPtrOut              = _IsValidPtrOut@4            @80
    87     MkParseDisplayName         = _MkParseDisplayName@16      @81
    88     MonikerCommonPrefixWith    = _MonikerCommonPrefixWith@12 @82
    89     MonikerRelativePathTo      = _MonikerRelativePathTo@16  @83
    90     OleBuildVersion            = _OleBuildVersion@0          @84
    91     OleConvertIStorageToOLESTREAM  = _OleConvertIStorageToOLESTREAM@8  @85
    92     OleConvertIStorageToOLESTREAMEx  = _OleConvertIStorageToOLESTREAMEx@28 @86
    93     OleConvertOLESTREAMToIStorage  = _OleConvertOLESTREAMToIStorage@12 @87
    94     OleConvertOLESTREAMToIStorageEx  = _OleConvertOLESTREAMToIStorageEx@28 @88
    95     OleCreate                  = _OleCreate@28               @89
    96     OleCreateDefaultHandler    = _OleCreateDefaultHandler@16 @90
    97     OleCreateEmbeddingHelper   = _OleCreateEmbeddingHelper@24 @91
    98     OleCreateFromData          = _OleCreateFromData@28       @92
    99     OleCreateFromFile          = _OleCreateFromFile@32       @93
    100     OleCreateLink              = _OleCreateLink@28           @94
    101     OleCreateLinkFromData      = _OleCreateLinkFromData@28  @95
    102     OleCreateLinkToFile        = _OleCreateLinkToFile@28     @96
    103     OleCreateMenuDescriptor    = _OleCreateMenuDescriptor@8  @97
    104     OleCreateStaticFromData    = _OleCreateStaticFromData@28 @98
    105     OleDestroyMenuDescriptor   = _OleDestroyMenuDescriptor@4  @99
    106     OleDoAutoConvert           = _OleDoAutoConvert@8         @100
    107     OleDraw                    = _OleDraw@16                 @101
    108     OleDuplicateData           = _OleDuplicateData@12        @102
    109     OleFlushClipboard          = _OleFlushClipboard@0        @103
    110     OleGetAutoConvert          = _OleGetAutoConvert@8        @104
    111     OleGetClipboard            = _OleGetClipboard@4          @105
    112     OleGetIconOfClass          = _OleGetIconOfClass@12       @106
    113     OleGetIconOfFile           = _OleGetIconOfFile@8         @107
    114     OleInitialize              = _OleInitialize@4            @108
    115     OleInitializeWOW           = _OleInitializeWOW@0         @109
    116     OleIsCurrentClipboard      = _OleIsCurrentClipboard@4    @110
    117     OleIsRunning               = _OleIsRunning@4             @111
    118     OleLoad                    = _OleLoad@16                 @112
    119     OleLoadFromStream          = _OleLoadFromStream@12       @113
    120     OleLockRunning             = _OleLockRunning@12          @114
    121     OleMetafilePictFromIconAndLabel  = _OleMetafilePictFromIconAndLabel@16 @115
    122     OleNoteObjectVisible       = _OleNoteObjectVisible@8     @116
    123     OleQueryCreateFromData     = _OleQueryCreateFromData@4  @117
    124     OleQueryLinkFromData       = _OleQueryLinkFromData@4     @118
    125     OleRegEnumFormatEtc        = _OleRegEnumFormatEtc@12     @119
    126     OleRegEnumVerbs            = _OleRegEnumVerbs@8          @120
    127     OleRegGetMiscStatus        = _OleRegGetMiscStatus@12     @121
    128     OleRegGetUserType          = _OleRegGetUserType@12       @122
    129     OleRun                     = _OleRun@4                   @123
    130     OleSave                    = _OleSave@12                 @124
    131     OleSaveToStream            = _OleSaveToStream@8          @125
    132     OleSetAutoConvert          = _OleSetAutoConvert@8        @126
    133     OleSetClipboard            = _OleSetClipboard@4          @127
    134     OleSetContainedObject      = _OleSetContainedObject@8    @128
    135     OleSetMenuDescriptor       = _OleSetMenuDescriptor@20    @129
    136     OleTranslateAccelerator    = _OleTranslateAccelerator@12 @130
    137     OleUninitialize            = _OleUninitialize@0          @131
    138     OpenOrCreateStream         = _OpenOrCreateStream@0       @132
    139     ProgIDFromCLSID            = _ProgIDFromCLSID@8          @133
    140     ReadClassStg               = _ReadClassStg@8             @134
    141     ReadClassStm               = _ReadClassStm@8             @135
    142     ReadFmtUserTypeStg         = _ReadFmtUserTypeStg@12      @136
    143     ReadOleStg                 = _ReadOleStg@0               @137
    144     ReadStringStream           = _ReadStringStream@0         @138
    145     RegisterDragDrop           = _RegisterDragDrop@8         @139
    146     ReleaseStgMedium           = _ReleaseStgMedium@4         @140
    147     RevokeDragDrop             = _RevokeDragDrop@4           @141
    148     SetConvertStg              = _SetConvertStg@8            @142
    149     SetDocumentBitStg          = _SetDocumentBitStg@0        @143
    150     StgCreateDocfile           = _StgCreateDocfile@16        @144
    151     StgCreateDocfileOnILockBytes  = _StgCreateDocfileOnILockBytes@16 @145
    152     StgIsStorageFile           = _StgIsStorageFile@4         @146
    153     StgIsStorageILockBytes     = _StgIsStorageILockBytes@4  @147
    154     StgOpenStorage             = _StgOpenStorage@24           @148
    155     StgOpenStorageOnILockBytes  = _StgOpenStorageOnILockBytes@24 @149
    156     StgSetTimes                = _StgSetTimes@16             @150
    157     StringFromCLSID            = _StringFromCLSID@8          @151
    158     StringFromGUID2            = _StringFromGUID2@12         @152
    159     StringFromIID              = _StringFromCLSID@8          @153
    160     UtConvertDvtd16toDvtd32    = _UtConvertDvtd16toDvtd32@0  @154
    161     UtConvertDvtd32toDvtd16    = _UtConvertDvtd32toDvtd16@0  @155
    162     UtGetDvtd16Info            = _UtGetDvtd16Info@0          @156
    163     UtGetDvtd32Info            = _UtGetDvtd32Info@0          @157
    164     WriteClassStg              = _WriteClassStg@8            @158
    165     WriteClassStm              = _WriteClassStm@8            @159
    166     WriteFmtUserTypeStg        = _WriteFmtUserTypeStg@12     @160
    167     WriteOleStg                = _WriteOleStg@0              @161
    168     WriteStringStream          = _WriteStringStream@0        @162
    169     CoInitializeEx             = _CoInitializeEx@8           @163
    170     CoInitializeSecurity       = _CoInitializeSecurity@36    @164
    171     CoCreateInstanceEx         = _CoCreateInstanceEx@24      @165
    172     PropVariantClear           = _PropVariantClear@4         @166
     7    BindMoniker                = "_BindMoniker@16"           @1
     8    CLSIDFromProgID            = "_CLSIDFromProgID@8"        @2
     9    CLSIDFromString            = "_CLSIDFromString@8"        @3
     10    CoBuildVersion             = "_CoBuildVersion@0"         @4
     11    CoCreateFreeThreadedMarshaler  = "_CoCreateFreeThreadedMarshaler@8"  @5
     12    CoCreateGuid               = "_CoCreateGuid@4"           @6
     13    CoCreateInstance           = "_CoCreateInstance@20"      @7
     14    CoDisconnectObject         = "_CoDisconnectObject@8"     @8
     15    CoDosDateTimeToFileTime    = "_CoDosDateTimeToFileTime@12" @9
     16    CoFileTimeNow              = "_CoFileTimeNow@4"          @10
     17    CoFileTimeToDosDateTime    = "_CoFileTimeToDosDateTime@12" @11
     18    CoFreeAllLibraries         = "_CoFreeAllLibraries@0"     @12
     19    CoFreeLibrary              = "_CoFreeLibrary@4"          @13
     20    CoFreeUnusedLibraries      = "_CoFreeUnusedLibraries@0"  @14
     21    CoGetCallerTID             = "_CoGetCallerTID@0"         @15
     22    CoGetClassObject           = "_CoGetClassObject@20"      @16
     23    CoGetCurrentLogicalThreadId  = "_CoGetCurrentLogicalThreadId@0"  @17
     24    CoGetCurrentProcess        = "_CoGetCurrentProcess@0"    @18
     25    CoGetInterfaceAndReleaseStream  = "_CoGetInterfaceAndReleaseStream@12" @19
     26    CoGetMalloc                = "_CoGetMalloc@8"            @20
     27    CoGetMarshalSizeMax        = "_CoGetMarshalSizeMax@24"   @21
     28    CoGetPSClsid               = "_CoGetPSClsid@8"           @22
     29    CoGetStandardMarshal       = "_CoGetStandardMarshal@24"  @23
     30    CoGetState                 = "_CoGetState@0"             @24
     31    CoGetTreatAsClass          = "_CoGetTreatAsClass@8"      @25
     32    CoInitialize               = "_CoInitialize@4"           @26
     33    CoInitializeWOW            = "_CoInitializeWOW@8"        @27
     34    CoIsHandlerConnected       = "_CoIsHandlerConnected@4"   @28
     35    CoIsOle1Class              = "_CoIsOle1Class@4"          @29
     36    CoLoadLibrary              = "_CoLoadLibrary@8"          @30
     37    CoLockObjectExternal       = "_CoLockObjectExternal@12"  @31
     38    CoMarshalHresult           = "_CoMarshalHresult@8"       @32
     39    CoMarshalInterThreadInterfaceInStream  = "_CoMarshalInterThreadInterfaceInStream@12" @33
     40    CoMarshalInterface         = "_CoMarshalInterface@24"    @34
     41    CoQueryReleaseObject       = "_CoQueryReleaseObject@0"   @35
     42    CoRegisterClassObject      = "_CoRegisterClassObject@20" @36
     43    CoRegisterMallocSpy        = "_CoRegisterMallocSpy@4"    @37
     44    CoRegisterMessageFilter    = "_CoRegisterMessageFilter@8"  @38
     45    CoReleaseMarshalData       = "_CoReleaseMarshalData@4"   @39
     46    CoRevokeClassObject        = "_CoRevokeClassObject@4"    @40
     47    CoRevokeMallocSpy          = "_CoRevokeMallocSpy@0"      @41
     48    CoSetState                 = "_CoSetState@4"             @42
     49    CoTaskMemAlloc             = "_CoTaskMemAlloc@4"         @43
     50    CoTaskMemFree              = "_CoTaskMemFree@4"          @44
     51    CoTaskMemRealloc           = "_CoTaskMemRealloc@8"       @45
     52    CoTreatAsClass             = "_CoTreatAsClass@8"         @46
     53    CoUninitialize             = "_CoUninitialize@0"         @47
     54    CoUnloadingWOW             = "_CoUnloadingWOW@0"         @48
     55    CoUnmarshalHresult         = "_CoUnmarshalHresult@8"     @49
     56    CoUnmarshalInterface       = "_CoUnmarshalInterface@12"  @50
     57    CreateAntiMoniker          = "_CreateAntiMoniker@4"      @51
     58    CreateBindCtx              = "_CreateBindCtx@8"          @52
     59    CreateDataAdviseHolder     = "_CreateDataAdviseHolder@4" @53
     60    CreateDataCache            = "_CreateDataCache@16"       @54
     61    CreateFileMoniker          = "_CreateFileMoniker@8"      @55
     62    CreateGenericComposite     = "_CreateGenericComposite@12"  @56
     63    CreateILockBytesOnHGlobal  = "_CreateILockBytesOnHGlobal@12" @57
     64    CreateItemMoniker          = "_CreateItemMoniker@12"     @58
     65    CreateOleAdviseHolder      = "_CreateOleAdviseHolder@4"  @59
     66    CreatePointerMoniker       = "_CreatePointerMoniker@8"   @60
     67    CreateStreamOnHGlobal      = "_CreateStreamOnHGlobal@12" @61
     68    DllDebugObjectRPCHook      = "_DllDebugObjectRPCHook@0"  @62
     69    DllGetClassObject          = "_OLE32_DllGetClassObject@12"     @63
     70    DllGetClassObjectWOW       = "_DllGetClassObjectWOW@0"   @64
     71    DoDragDrop                 = "_DoDragDrop@16"            @65
     72    EnableHookObject           = "_EnableHookObject@0"       @66
     73    GetClassFile               = "_GetClassFile@8"           @67
     74    GetConvertStg              = "_GetConvertStg@4"          @68
     75    GetDocumentBitStg          = "_GetDocumentBitStg@0"      @69
     76    GetHGlobalFromILockBytes   = "_GetHGlobalFromILockBytes@8"  @70
     77    GetHGlobalFromStream       = "_GetHGlobalFromStream@8"   @71
     78    GetHookInterface           = "_GetHookInterface@0"       @72
     79    GetRunningObjectTable      = "_GetRunningObjectTable@8"  @73
     80    IIDFromString              = "_CLSIDFromString@8"        @74
     81    IsAccelerator              = "_IsAccelerator@16"         @75
     82    IsEqualGUID                = "_IsEqualGUID@8"            @76
     83    IsValidIid                 = "_IsValidIid@4"             @77
     84    IsValidInterface           = "_IsValidInterface@4"       @78
     85    IsValidPtrIn               = "_IsValidPtrIn@4"           @79
     86    IsValidPtrOut              = "_IsValidPtrOut@4"          @80
     87    MkParseDisplayName         = "_MkParseDisplayName@16"    @81
     88    MonikerCommonPrefixWith    = "_MonikerCommonPrefixWith@12" @82
     89    MonikerRelativePathTo      = "_MonikerRelativePathTo@16" @83
     90    OleBuildVersion            = "_OleBuildVersion@0"        @84
     91    OleConvertIStorageToOLESTREAM  = "_OleConvertIStorageToOLESTREAM@8"  @85
     92    OleConvertIStorageToOLESTREAMEx  = "_OleConvertIStorageToOLESTREAMEx@28" @86
     93    OleConvertOLESTREAMToIStorage  = "_OleConvertOLESTREAMToIStorage@12" @87
     94    OleConvertOLESTREAMToIStorageEx  = "_OleConvertOLESTREAMToIStorageEx@28" @88
     95    OleCreate                  = "_OleCreate@28"             @89
     96    OleCreateDefaultHandler    = "_OleCreateDefaultHandler@16" @90
     97    OleCreateEmbeddingHelper   = "_OleCreateEmbeddingHelper@24" @91
     98    OleCreateFromData          = "_OleCreateFromData@28"     @92
     99    OleCreateFromFile          = "_OleCreateFromFile@32"     @93
     100    OleCreateLink              = "_OleCreateLink@28"         @94
     101    OleCreateLinkFromData      = "_OleCreateLinkFromData@28" @95
     102    OleCreateLinkToFile        = "_OleCreateLinkToFile@28"   @96
     103    OleCreateMenuDescriptor    = "_OleCreateMenuDescriptor@8"  @97
     104    OleCreateStaticFromData    = "_OleCreateStaticFromData@28" @98
     105    OleDestroyMenuDescriptor   = "_OleDestroyMenuDescriptor@4"  @99
     106    OleDoAutoConvert           = "_OleDoAutoConvert@8"       @100
     107    OleDraw                    = "_OleDraw@16"               @101
     108    OleDuplicateData           = "_OleDuplicateData@12"      @102
     109    OleFlushClipboard          = "_OleFlushClipboard@0"      @103
     110    OleGetAutoConvert          = "_OleGetAutoConvert@8"      @104
     111    OleGetClipboard            = "_OleGetClipboard@4"        @105
     112    OleGetIconOfClass          = "_OleGetIconOfClass@12"     @106
     113    OleGetIconOfFile           = "_OleGetIconOfFile@8"       @107
     114    OleInitialize              = "_OleInitialize@4"          @108
     115    OleInitializeWOW           = "_OleInitializeWOW@0"       @109
     116    OleIsCurrentClipboard      = "_OleIsCurrentClipboard@4"  @110
     117    OleIsRunning               = "_OleIsRunning@4"           @111
     118    OleLoad                    = "_OleLoad@16"               @112
     119    OleLoadFromStream          = "_OleLoadFromStream@12"     @113
     120    OleLockRunning             = "_OleLockRunning@12"        @114
     121    OleMetafilePictFromIconAndLabel  = "_OleMetafilePictFromIconAndLabel@16" @115
     122    OleNoteObjectVisible       = "_OleNoteObjectVisible@8"   @116
     123    OleQueryCreateFromData     = "_OleQueryCreateFromData@4" @117
     124    OleQueryLinkFromData       = "_OleQueryLinkFromData@4"   @118
     125    OleRegEnumFormatEtc        = "_OleRegEnumFormatEtc@12"   @119
     126    OleRegEnumVerbs            = "_OleRegEnumVerbs@8"        @120
     127    OleRegGetMiscStatus        = "_OleRegGetMiscStatus@12"   @121
     128    OleRegGetUserType          = "_OleRegGetUserType@12"     @122
     129    OleRun                     = "_OleRun@4"                 @123
     130    OleSave                    = "_OleSave@12"               @124
     131    OleSaveToStream            = "_OleSaveToStream@8"        @125
     132    OleSetAutoConvert          = "_OleSetAutoConvert@8"      @126
     133    OleSetClipboard            = "_OleSetClipboard@4"        @127
     134    OleSetContainedObject      = "_OleSetContainedObject@8"  @128
     135    OleSetMenuDescriptor       = "_OleSetMenuDescriptor@20"  @129
     136    OleTranslateAccelerator    = "_OleTranslateAccelerator@12" @130
     137    OleUninitialize            = "_OleUninitialize@0"        @131
     138    OpenOrCreateStream         = "_OpenOrCreateStream@0"     @132
     139    ProgIDFromCLSID            = "_ProgIDFromCLSID@8"        @133
     140    ReadClassStg               = "_ReadClassStg@8"           @134
     141    ReadClassStm               = "_ReadClassStm@8"           @135
     142    ReadFmtUserTypeStg         = "_ReadFmtUserTypeStg@12"    @136
     143    ReadOleStg                 = "_ReadOleStg@0"             @137
     144    ReadStringStream           = "_ReadStringStream@0"       @138
     145    RegisterDragDrop           = "_RegisterDragDrop@8"       @139
     146    ReleaseStgMedium           = "_ReleaseStgMedium@4"       @140
     147    RevokeDragDrop             = "_RevokeDragDrop@4"         @141
     148    SetConvertStg              = "_SetConvertStg@8"          @142
     149    SetDocumentBitStg          = "_SetDocumentBitStg@0"      @143
     150    StgCreateDocfile           = "_StgCreateDocfile@16"      @144
     151    StgCreateDocfileOnILockBytes  = "_StgCreateDocfileOnILockBytes@16" @145
     152    StgIsStorageFile           = "_StgIsStorageFile@4"       @146
     153    StgIsStorageILockBytes     = "_StgIsStorageILockBytes@4" @147
     154    StgOpenStorage             = "_StgOpenStorage@24"         @148
     155    StgOpenStorageOnILockBytes  = "_StgOpenStorageOnILockBytes@24" @149
     156    StgSetTimes                = "_StgSetTimes@16"           @150
     157    StringFromCLSID            = "_StringFromCLSID@8"        @151
     158    StringFromGUID2            = "_StringFromGUID2@12"       @152
     159    StringFromIID              = "_StringFromCLSID@8"        @153
     160    UtConvertDvtd16toDvtd32    = "_UtConvertDvtd16toDvtd32@0"  @154
     161    UtConvertDvtd32toDvtd16    = "_UtConvertDvtd32toDvtd16@0"  @155
     162    UtGetDvtd16Info            = "_UtGetDvtd16Info@0"        @156
     163    UtGetDvtd32Info            = "_UtGetDvtd32Info@0"        @157
     164    WriteClassStg              = "_WriteClassStg@8"          @158
     165    WriteClassStm              = "_WriteClassStm@8"          @159
     166    WriteFmtUserTypeStg        = "_WriteFmtUserTypeStg@12"   @160
     167    WriteOleStg                = "_WriteOleStg@0"            @161
     168    WriteStringStream          = "_WriteStringStream@0"      @162
     169    CoInitializeEx             = "_CoInitializeEx@8"         @163
     170    CoInitializeSecurity       = "_CoInitializeSecurity@36"  @164
     171    CoCreateInstanceEx         = "_CoCreateInstanceEx@24"    @165
     172    PropVariantClear           = "_PropVariantClear@4"       @166
    173173;167 stub CoCopyProxy                # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED
    174174;168 stub CoGetCallContext           # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED
     
    177177;171 stub CoRegisterPSClsid          # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED
    178178;172 stub CoReleaseServerProcess     # stdcall () return 0,ERR_NOTIMPLEMENTED
    179     CoResumeClassObjects       = _CoResumeClassObjects@0     @173
     179    CoResumeClassObjects       = "_CoResumeClassObjects@0"   @173
    180180;174 stub CoRevertToSelf             # stdcall () return 0,ERR_NOTIMPLEMENTED
    181181;175 stub CoSetProxyBlanket          # stdcall (ptr long long wstr long long ptr long) return 0,ERR_NOTIMPLEMENTED
     
    196196;190 stub CoRegisterSurrogate
    197197;191 stub CoSwitchCallContext
    198     CreateErrorInfo            = _CreateErrorInfo@4          @192
     198    CreateErrorInfo            = "_CreateErrorInfo@4"        @192
    199199;193 stub CreateObjrefMoniker
    200     DllRegisterServer          = _OLE32_DllRegisterServer@0  @194
    201     FreePropVariantArray       = _FreePropVariantArray@8     @195
    202     GetErrorInfo               = _GetErrorInfo@8             @196
    203 
    204     PropVariantCopy            = _PropVariantCopy@8          @246
    205 
    206     SetErrorInfo               = _SetErrorInfo@8             @255
    207 
    208     CoImpersonateClient        = _CoImpersonateClient@0      @997   ; suppress warning
    209     CoInitializeSecurity       = _CoInitializeSecurity@36    @998   ; suppress warning
    210     CoRegisterSurrogate        = _CoRegisterSurrogate@4      @999   ; suppress warning
     200    DllRegisterServer          = "_OLE32_DllRegisterServer@0"  @194
     201    FreePropVariantArray       = "_FreePropVariantArray@8"   @195
     202    GetErrorInfo               = "_GetErrorInfo@8"           @196
     203
     204    PropVariantCopy            = "_PropVariantCopy@8"        @246
     205
     206    SetErrorInfo               = "_SetErrorInfo@8"           @255
     207
     208    CoImpersonateClient        = "_CoImpersonateClient@0"    @997   ; suppress warning
     209    CoInitializeSecurity_998   = "_CoInitializeSecurity@36"  @998   ; suppress warning
     210    CoRegisterSurrogate        = "_CoRegisterSurrogate@4"    @999   ; suppress warning
    211211
    212212;
    213213;   Helper Functions
    214214;
    215     WINE_StringFromCLSID       = _WINE_StringFromCLSID@8     @1000
    216     CLSIDFromStringA           = _CLSIDFromStringA@8         @1001
    217     CLSIDFromString16          = _CLSIDFromString16@8        @1002  ; COMPOBJ.19
     215    WINE_StringFromCLSID       = "_WINE_StringFromCLSID@8"   @1000
     216    CLSIDFromStringA           = "_CLSIDFromStringA@8"       @1001
     217    CLSIDFromString16          = "_CLSIDFromString16@8"      @1002  ; COMPOBJ.19
    218218
    219219; private functions for drag and drop (used by user32\dragdrop.cpp)
    220     OLEDD_AcceptsDragDrop      = _OLEDD_AcceptsDragDrop@4    @1010
    221     OLEDD_DropFiles            = _OLEDD_DropFiles@4          @1011
    222     OLEDD_DragOver             = _OLEDD_DragOver@8           @1012
    223     OLEDD_DragEnter            = _OLEDD_DragEnter@12         @1013
    224     OLEDD_DragLeave            = _OLEDD_DragLeave@4          @1014
     220    OLEDD_AcceptsDragDrop      = "_OLEDD_AcceptsDragDrop@4"  @1010
     221    OLEDD_DropFiles            = "_OLEDD_DropFiles@4"        @1011
     222    OLEDD_DragOver             = "_OLEDD_DragOver@8"         @1012
     223    OLEDD_DragEnter            = "_OLEDD_DragEnter@12"       @1013
     224    OLEDD_DragLeave            = "_OLEDD_DragLeave@4"        @1014
  • TabularUnified branches/gcc-kmk/src/ole32/ole32dbg.def

    r9400 r21855  
    55
    66EXPORTS
    7     BindMoniker                = _DbgBindMoniker@16             @1
    8     CLSIDFromProgID            = _DbgCLSIDFromProgID@8          @2
    9     CLSIDFromString            = _DbgCLSIDFromString@8          @3
    10     CoBuildVersion             = _DbgCoBuildVersion@0           @4
    11     CoCreateFreeThreadedMarshaler  = _DbgCoCreateFreeThreadedMarshaler@8  @5
    12     CoCreateGuid               = _DbgCoCreateGuid@4             @6
    13     CoCreateInstance           = _DbgCoCreateInstance@20        @7
    14     CoDisconnectObject         = _DbgCoDisconnectObject@8       @8
    15     CoDosDateTimeToFileTime    = _DbgCoDosDateTimeToFileTime@12 @9
    16     CoFileTimeNow              = _DbgCoFileTimeNow@4            @10
    17     CoFileTimeToDosDateTime    = _DbgCoFileTimeToDosDateTime@12 @11
    18     CoFreeAllLibraries         = _DbgCoFreeAllLibraries@0       @12
    19     CoFreeLibrary              = _DbgCoFreeLibrary@4            @13
    20     CoFreeUnusedLibraries      = _DbgCoFreeUnusedLibraries@0    @14
    21     CoGetCallerTID             = _DbgCoGetCallerTID@0           @15
    22     CoGetClassObject           = _DbgCoGetClassObject@20        @16
    23     CoGetCurrentLogicalThreadId  = _DbgCoGetCurrentLogicalThreadId@0  @17
    24     CoGetCurrentProcess        = _DbgCoGetCurrentProcess@0      @18
    25     CoGetInterfaceAndReleaseStream  = _DbgCoGetInterfaceAndReleaseStream@12 @19
    26     CoGetMalloc                = _DbgCoGetMalloc@8              @20
    27     CoGetMarshalSizeMax        = _DbgCoGetMarshalSizeMax@24     @21
    28     CoGetPSClsid               = _DbgCoGetPSClsid@8             @22
    29     CoGetStandardMarshal       = _DbgCoGetStandardMarshal@24    @23
    30     CoGetState                 = _DbgCoGetState@0               @24
    31     CoGetTreatAsClass          = _DbgCoGetTreatAsClass@8        @25
    32     CoInitialize               = _DbgCoInitialize@4             @26
    33     CoInitializeWOW            = _DbgCoInitializeWOW@8          @27
    34     CoIsHandlerConnected       = _DbgCoIsHandlerConnected@4     @28
    35     CoIsOle1Class              = _DbgCoIsOle1Class@4            @29
    36     CoLoadLibrary              = _DbgCoLoadLibrary@8            @30
    37     CoLockObjectExternal       = _DbgCoLockObjectExternal@12    @31
    38     CoMarshalHresult           = _DbgCoMarshalHresult@8         @32
    39     CoMarshalInterThreadInterfaceInStream  = _DbgCoMarshalInterThreadInterfaceInStream@12 @33
    40     CoMarshalInterface         = _DbgCoMarshalInterface@24      @34
    41     CoQueryReleaseObject       = _DbgCoQueryReleaseObject@0     @35
    42     CoRegisterClassObject      = _DbgCoRegisterClassObject@20  @36
    43     CoRegisterMallocSpy        = _DbgCoRegisterMallocSpy@4      @37
    44     CoRegisterMessageFilter    = _DbgCoRegisterMessageFilter@8  @38
    45     CoReleaseMarshalData       = _DbgCoReleaseMarshalData@4     @39
    46     CoRevokeClassObject        = _DbgCoRevokeClassObject@4      @40
    47     CoRevokeMallocSpy          = _DbgCoRevokeMallocSpy@0        @41
    48     CoSetState                 = _DbgCoSetState@4               @42
    49     CoTaskMemAlloc             = _DbgCoTaskMemAlloc@4           @43
    50     CoTaskMemFree              = _DbgCoTaskMemFree@4            @44
    51     CoTaskMemRealloc           = _DbgCoTaskMemRealloc@8         @45
    52     CoTreatAsClass             = _DbgCoTreatAsClass@8           @46
    53     CoUninitialize             = _DbgCoUninitialize@0           @47
    54     CoUnloadingWOW             = _DbgCoUnloadingWOW@0           @48
    55     CoUnmarshalHresult         = _DbgCoUnmarshalHresult@8       @49
    56     CoUnmarshalInterface       = _DbgCoUnmarshalInterface@12    @50
    57     CreateAntiMoniker          = _DbgCreateAntiMoniker@4        @51
    58     CreateBindCtx              = _DbgCreateBindCtx@8            @52
    59     CreateDataAdviseHolder     = _DbgCreateDataAdviseHolder@4  @53
    60     CreateDataCache            = _DbgCreateDataCache@16         @54
    61     CreateFileMoniker          = _DbgCreateFileMoniker@8        @55
    62     CreateGenericComposite     = _DbgCreateGenericComposite@12  @56
    63     CreateILockBytesOnHGlobal  = _DbgCreateILockBytesOnHGlobal@12 @57
    64     CreateItemMoniker          = _DbgCreateItemMoniker@12       @58
    65     CreateOleAdviseHolder      = _DbgCreateOleAdviseHolder@4    @59
    66     CreatePointerMoniker       = _DbgCreatePointerMoniker@8     @60
    67     CreateStreamOnHGlobal      = _DbgCreateStreamOnHGlobal@12  @61
    68     DllDebugObjectRPCHook      = _DbgDllDebugObjectRPCHook@0    @62
    69     DllGetClassObject          = _DbgOLE32_DllGetClassObject@12       @63
    70     DllGetClassObjectWOW       = _DbgDllGetClassObjectWOW@0     @64
    71     DoDragDrop                 = _DbgDoDragDrop@16              @65
    72     EnableHookObject           = _DbgEnableHookObject@0         @66
    73     GetClassFile               = _DbgGetClassFile@8             @67
    74     GetConvertStg              = _DbgGetConvertStg@4            @68
    75     GetDocumentBitStg          = _DbgGetDocumentBitStg@0        @69
    76     GetHGlobalFromILockBytes   = _DbgGetHGlobalFromILockBytes@8  @70
    77     GetHGlobalFromStream       = _DbgGetHGlobalFromStream@8     @71
    78     GetHookInterface           = _DbgGetHookInterface@0         @72
    79     GetRunningObjectTable      = _DbgGetRunningObjectTable@8    @73
    80     IIDFromString              = _DbgCLSIDFromString@8          @74
    81     IsAccelerator              = _DbgIsAccelerator@16           @75
    82     IsEqualGUID                = _DbgIsEqualGUID@8              @76
    83     IsValidIid                 = _DbgIsValidIid@4               @77
    84     IsValidInterface           = _DbgIsValidInterface@4         @78
    85     IsValidPtrIn               = _DbgIsValidPtrIn@4             @79
    86     IsValidPtrOut              = _DbgIsValidPtrOut@4            @80
    87     MkParseDisplayName         = _DbgMkParseDisplayName@16      @81
    88     MonikerCommonPrefixWith    = _DbgMonikerCommonPrefixWith@12 @82
    89     MonikerRelativePathTo      = _DbgMonikerRelativePathTo@16  @83
    90     OleBuildVersion            = _DbgOleBuildVersion@0          @84
    91     OleConvertIStorageToOLESTREAM  = _DbgOleConvertIStorageToOLESTREAM@8  @85
    92     OleConvertIStorageToOLESTREAMEx  = _DbgOleConvertIStorageToOLESTREAMEx@28 @86
    93     OleConvertOLESTREAMToIStorage  = _DbgOleConvertOLESTREAMToIStorage@12 @87
    94     OleConvertOLESTREAMToIStorageEx  = _DbgOleConvertOLESTREAMToIStorageEx@28 @88
    95     OleCreate                  = _DbgOleCreate@28               @89
    96     OleCreateDefaultHandler    = _DbgOleCreateDefaultHandler@16 @90
    97     OleCreateEmbeddingHelper   = _DbgOleCreateEmbeddingHelper@24 @91
    98     OleCreateFromData          = _DbgOleCreateFromData@28       @92
    99     OleCreateFromFile          = _DbgOleCreateFromFile@32       @93
    100     OleCreateLink              = _DbgOleCreateLink@28           @94
    101     OleCreateLinkFromData      = _DbgOleCreateLinkFromData@28  @95
    102     OleCreateLinkToFile        = _DbgOleCreateLinkToFile@28     @96
    103     OleCreateMenuDescriptor    = _DbgOleCreateMenuDescriptor@8  @97
    104     OleCreateStaticFromData    = _DbgOleCreateStaticFromData@28 @98
    105     OleDestroyMenuDescriptor   = _DbgOleDestroyMenuDescriptor@4  @99
    106     OleDoAutoConvert           = _DbgOleDoAutoConvert@8         @100
    107     OleDraw                    = _DbgOleDraw@16                 @101
    108     OleDuplicateData           = _DbgOleDuplicateData@12        @102
    109     OleFlushClipboard          = _DbgOleFlushClipboard@0        @103
    110     OleGetAutoConvert          = _DbgOleGetAutoConvert@8        @104
    111     OleGetClipboard            = _DbgOleGetClipboard@4          @105
    112     OleGetIconOfClass          = _DbgOleGetIconOfClass@12       @106
    113     OleGetIconOfFile           = _DbgOleGetIconOfFile@8         @107
    114     OleInitialize              = _DbgOleInitialize@4            @108
    115     OleInitializeWOW           = _DbgOleInitializeWOW@0         @109
    116     OleIsCurrentClipboard      = _DbgOleIsCurrentClipboard@4    @110
    117     OleIsRunning               = _DbgOleIsRunning@4             @111
    118     OleLoad                    = _DbgOleLoad@16                 @112
    119     OleLoadFromStream          = _DbgOleLoadFromStream@12       @113
    120     OleLockRunning             = _DbgOleLockRunning@12          @114
    121     OleMetafilePictFromIconAndLabel  = _DbgOleMetafilePictFromIconAndLabel@16 @115
    122     OleNoteObjectVisible       = _DbgOleNoteObjectVisible@8     @116
    123     OleQueryCreateFromData     = _DbgOleQueryCreateFromData@4  @117
    124     OleQueryLinkFromData       = _DbgOleQueryLinkFromData@4     @118
    125     OleRegEnumFormatEtc        = _DbgOleRegEnumFormatEtc@12     @119
    126     OleRegEnumVerbs            = _DbgOleRegEnumVerbs@8          @120
    127     OleRegGetMiscStatus        = _DbgOleRegGetMiscStatus@12     @121
    128     OleRegGetUserType          = _DbgOleRegGetUserType@12       @122
    129     OleRun                     = _DbgOleRun@4                   @123
    130     OleSave                    = _DbgOleSave@12                 @124
    131     OleSaveToStream            = _DbgOleSaveToStream@8          @125
    132     OleSetAutoConvert          = _DbgOleSetAutoConvert@8        @126
    133     OleSetClipboard            = _DbgOleSetClipboard@4          @127
    134     OleSetContainedObject      = _DbgOleSetContainedObject@8    @128
    135     OleSetMenuDescriptor       = _DbgOleSetMenuDescriptor@20    @129
    136     OleTranslateAccelerator    = _DbgOleTranslateAccelerator@12 @130
    137     OleUninitialize            = _DbgOleUninitialize@0          @131
    138     OpenOrCreateStream         = _DbgOpenOrCreateStream@0       @132
    139     ProgIDFromCLSID            = _DbgProgIDFromCLSID@8          @133
    140     ReadClassStg               = _DbgReadClassStg@8             @134
    141     ReadClassStm               = _DbgReadClassStm@8             @135
    142     ReadFmtUserTypeStg         = _DbgReadFmtUserTypeStg@12      @136
    143     ReadOleStg                 = _DbgReadOleStg@0               @137
    144     ReadStringStream           = _DbgReadStringStream@0         @138
    145     RegisterDragDrop           = _DbgRegisterDragDrop@8         @139
    146     ReleaseStgMedium           = _DbgReleaseStgMedium@4         @140
    147     RevokeDragDrop             = _DbgRevokeDragDrop@4           @141
    148     SetConvertStg              = _DbgSetConvertStg@8            @142
    149     SetDocumentBitStg          = _DbgSetDocumentBitStg@0        @143
    150     StgCreateDocfile           = _DbgStgCreateDocfile@16        @144
    151     StgCreateDocfileOnILockBytes  = _DbgStgCreateDocfileOnILockBytes@16 @145
    152     StgIsStorageFile           = _DbgStgIsStorageFile@4         @146
    153     StgIsStorageILockBytes     = _DbgStgIsStorageILockBytes@4  @147
    154     StgOpenStorage             = _DbgStgOpenStorage@24           @148
    155     StgOpenStorageOnILockBytes  = _DbgStgOpenStorageOnILockBytes@24 @149
    156     StgSetTimes                = _DbgStgSetTimes@16             @150
    157     StringFromCLSID            = _DbgStringFromCLSID@8          @151
    158     StringFromGUID2            = _DbgStringFromGUID2@12         @152
    159     StringFromIID              = _DbgStringFromCLSID@8          @153
    160     UtConvertDvtd16toDvtd32    = _DbgUtConvertDvtd16toDvtd32@0  @154
    161     UtConvertDvtd32toDvtd16    = _DbgUtConvertDvtd32toDvtd16@0  @155
    162     UtGetDvtd16Info            = _DbgUtGetDvtd16Info@0          @156
    163     UtGetDvtd32Info            = _DbgUtGetDvtd32Info@0          @157
    164     WriteClassStg              = _DbgWriteClassStg@8            @158
    165     WriteClassStm              = _DbgWriteClassStm@8            @159
    166     WriteFmtUserTypeStg        = _DbgWriteFmtUserTypeStg@12     @160
    167     WriteOleStg                = _DbgWriteOleStg@0              @161
    168     WriteStringStream          = _DbgWriteStringStream@0        @162
    169 
    170     CoInitializeEx             = _DbgCoInitializeEx@8           @163
    171     CoInitializeSecurity       = _DbgCoInitializeSecurity@36    @164
    172     CoCreateInstanceEx         = _DbgCoCreateInstanceEx@24      @165
    173     PropVariantClear           = _DbgPropVariantClear@4         @166
     7    BindMoniker                = "_DbgBindMoniker@16"           @1
     8    CLSIDFromProgID            = "_DbgCLSIDFromProgID@8"        @2
     9    CLSIDFromString            = "_DbgCLSIDFromString@8"        @3
     10    CoBuildVersion             = "_DbgCoBuildVersion@0"         @4
     11    CoCreateFreeThreadedMarshaler  = "_DbgCoCreateFreeThreadedMarshaler@8"  @5
     12    CoCreateGuid               = "_DbgCoCreateGuid@4"           @6
     13    CoCreateInstance           = "_DbgCoCreateInstance@20"      @7
     14    CoDisconnectObject         = "_DbgCoDisconnectObject@8"     @8
     15    CoDosDateTimeToFileTime    = "_DbgCoDosDateTimeToFileTime@12" @9
     16    CoFileTimeNow              = "_DbgCoFileTimeNow@4"          @10
     17    CoFileTimeToDosDateTime    = "_DbgCoFileTimeToDosDateTime@12" @11
     18    CoFreeAllLibraries         = "_DbgCoFreeAllLibraries@0"     @12
     19    CoFreeLibrary              = "_DbgCoFreeLibrary@4"          @13
     20    CoFreeUnusedLibraries      = "_DbgCoFreeUnusedLibraries@0"  @14
     21    CoGetCallerTID             = "_DbgCoGetCallerTID@0"         @15
     22    CoGetClassObject           = "_DbgCoGetClassObject@20"      @16
     23    CoGetCurrentLogicalThreadId  = "_DbgCoGetCurrentLogicalThreadId@0"  @17
     24    CoGetCurrentProcess        = "_DbgCoGetCurrentProcess@0"    @18
     25    CoGetInterfaceAndReleaseStream  = "_DbgCoGetInterfaceAndReleaseStream@12" @19
     26    CoGetMalloc                = "_DbgCoGetMalloc@8"            @20
     27    CoGetMarshalSizeMax        = "_DbgCoGetMarshalSizeMax@24"   @21
     28    CoGetPSClsid               = "_DbgCoGetPSClsid@8"           @22
     29    CoGetStandardMarshal       = "_DbgCoGetStandardMarshal@24"  @23
     30    CoGetState                 = "_DbgCoGetState@0"             @24
     31    CoGetTreatAsClass          = "_DbgCoGetTreatAsClass@8"      @25
     32    CoInitialize               = "_DbgCoInitialize@4"           @26
     33    CoInitializeWOW            = "_DbgCoInitializeWOW@8"        @27
     34    CoIsHandlerConnected       = "_DbgCoIsHandlerConnected@4"   @28
     35    CoIsOle1Class              = "_DbgCoIsOle1Class@4"          @29
     36    CoLoadLibrary              = "_DbgCoLoadLibrary@8"          @30
     37    CoLockObjectExternal       = "_DbgCoLockObjectExternal@12"  @31
     38    CoMarshalHresult           = "_DbgCoMarshalHresult@8"       @32
     39    CoMarshalInterThreadInterfaceInStream  = "_DbgCoMarshalInterThreadInterfaceInStream@12" @33
     40    CoMarshalInterface         = "_DbgCoMarshalInterface@24"    @34
     41    CoQueryReleaseObject       = "_DbgCoQueryReleaseObject@0"   @35
     42    CoRegisterClassObject      = "_DbgCoRegisterClassObject@20" @36
     43    CoRegisterMallocSpy        = "_DbgCoRegisterMallocSpy@4"    @37
     44    CoRegisterMessageFilter    = "_DbgCoRegisterMessageFilter@8"  @38
     45    CoReleaseMarshalData       = "_DbgCoReleaseMarshalData@4"   @39
     46    CoRevokeClassObject        = "_DbgCoRevokeClassObject@4"    @40
     47    CoRevokeMallocSpy          = "_DbgCoRevokeMallocSpy@0"      @41
     48    CoSetState                 = "_DbgCoSetState@4"             @42
     49    CoTaskMemAlloc             = "_DbgCoTaskMemAlloc@4"         @43
     50    CoTaskMemFree              = "_DbgCoTaskMemFree@4"          @44
     51    CoTaskMemRealloc           = "_DbgCoTaskMemRealloc@8"       @45
     52    CoTreatAsClass             = "_DbgCoTreatAsClass@8"         @46
     53    CoUninitialize             = "_DbgCoUninitialize@0"         @47
     54    CoUnloadingWOW             = "_DbgCoUnloadingWOW@0"         @48
     55    CoUnmarshalHresult         = "_DbgCoUnmarshalHresult@8"     @49
     56    CoUnmarshalInterface       = "_DbgCoUnmarshalInterface@12"  @50
     57    CreateAntiMoniker          = "_DbgCreateAntiMoniker@4"      @51
     58    CreateBindCtx              = "_DbgCreateBindCtx@8"          @52
     59    CreateDataAdviseHolder     = "_DbgCreateDataAdviseHolder@4" @53
     60    CreateDataCache            = "_DbgCreateDataCache@16"       @54
     61    CreateFileMoniker          = "_DbgCreateFileMoniker@8"      @55
     62    CreateGenericComposite     = "_DbgCreateGenericComposite@12"  @56
     63    CreateILockBytesOnHGlobal  = "_DbgCreateILockBytesOnHGlobal@12" @57
     64    CreateItemMoniker          = "_DbgCreateItemMoniker@12"     @58
     65    CreateOleAdviseHolder      = "_DbgCreateOleAdviseHolder@4"  @59
     66    CreatePointerMoniker       = "_DbgCreatePointerMoniker@8"   @60
     67    CreateStreamOnHGlobal      = "_DbgCreateStreamOnHGlobal@12" @61
     68    DllDebugObjectRPCHook      = "_DbgDllDebugObjectRPCHook@0"  @62
     69    DllGetClassObject          = "_DbgOLE32_DllGetClassObject@12"     @63
     70    DllGetClassObjectWOW       = "_DbgDllGetClassObjectWOW@0"   @64
     71    DoDragDrop                 = "_DbgDoDragDrop@16"            @65
     72    EnableHookObject           = "_DbgEnableHookObject@0"       @66
     73    GetClassFile               = "_DbgGetClassFile@8"           @67
     74    GetConvertStg              = "_DbgGetConvertStg@4"          @68
     75    GetDocumentBitStg          = "_DbgGetDocumentBitStg@0"      @69
     76    GetHGlobalFromILockBytes   = "_DbgGetHGlobalFromILockBytes@8"  @70
     77    GetHGlobalFromStream       = "_DbgGetHGlobalFromStream@8"   @71
     78    GetHookInterface           = "_DbgGetHookInterface@0"       @72
     79    GetRunningObjectTable      = "_DbgGetRunningObjectTable@8"  @73
     80    IIDFromString              = "_DbgCLSIDFromString@8"        @74
     81    IsAccelerator              = "_DbgIsAccelerator@16"         @75
     82    IsEqualGUID                = "_DbgIsEqualGUID@8"            @76
     83    IsValidIid                 = "_DbgIsValidIid@4"             @77
     84    IsValidInterface           = "_DbgIsValidInterface@4"       @78
     85    IsValidPtrIn               = "_DbgIsValidPtrIn@4"           @79
     86    IsValidPtrOut              = "_DbgIsValidPtrOut@4"          @80
     87    MkParseDisplayName         = "_DbgMkParseDisplayName@16"    @81
     88    MonikerCommonPrefixWith    = "_DbgMonikerCommonPrefixWith@12" @82
     89    MonikerRelativePathTo      = "_DbgMonikerRelativePathTo@16" @83
     90    OleBuildVersion            = "_DbgOleBuildVersion@0"        @84
     91    OleConvertIStorageToOLESTREAM  = "_DbgOleConvertIStorageToOLESTREAM@8"  @85
     92    OleConvertIStorageToOLESTREAMEx  = "_DbgOleConvertIStorageToOLESTREAMEx@28" @86
     93    OleConvertOLESTREAMToIStorage  = "_DbgOleConvertOLESTREAMToIStorage@12" @87
     94    OleConvertOLESTREAMToIStorageEx  = "_DbgOleConvertOLESTREAMToIStorageEx@28" @88
     95    OleCreate                  = "_DbgOleCreate@28"             @89
     96    OleCreateDefaultHandler    = "_DbgOleCreateDefaultHandler@16" @90
     97    OleCreateEmbeddingHelper   = "_DbgOleCreateEmbeddingHelper@24" @91
     98    OleCreateFromData          = "_DbgOleCreateFromData@28"     @92
     99    OleCreateFromFile          = "_DbgOleCreateFromFile@32"     @93
     100    OleCreateLink              = "_DbgOleCreateLink@28"         @94
     101    OleCreateLinkFromData      = "_DbgOleCreateLinkFromData@28" @95
     102    OleCreateLinkToFile        = "_DbgOleCreateLinkToFile@28"   @96
     103    OleCreateMenuDescriptor    = "_DbgOleCreateMenuDescriptor@8"  @97
     104    OleCreateStaticFromData    = "_DbgOleCreateStaticFromData@28" @98
     105    OleDestroyMenuDescriptor   = "_DbgOleDestroyMenuDescriptor@4"  @99
     106    OleDoAutoConvert           = "_DbgOleDoAutoConvert@8"       @100
     107    OleDraw                    = "_DbgOleDraw@16"               @101
     108    OleDuplicateData           = "_DbgOleDuplicateData@12"      @102
     109    OleFlushClipboard          = "_DbgOleFlushClipboard@0"      @103
     110    OleGetAutoConvert          = "_DbgOleGetAutoConvert@8"      @104
     111    OleGetClipboard            = "_DbgOleGetClipboard@4"        @105
     112    OleGetIconOfClass          = "_DbgOleGetIconOfClass@12"     @106
     113    OleGetIconOfFile           = "_DbgOleGetIconOfFile@8"       @107
     114    OleInitialize              = "_DbgOleInitialize@4"          @108
     115    OleInitializeWOW           = "_DbgOleInitializeWOW@0"       @109
     116    OleIsCurrentClipboard      = "_DbgOleIsCurrentClipboard@4"  @110
     117    OleIsRunning               = "_DbgOleIsRunning@4"           @111
     118    OleLoad                    = "_DbgOleLoad@16"               @112
     119    OleLoadFromStream          = "_DbgOleLoadFromStream@12"     @113
     120    OleLockRunning             = "_DbgOleLockRunning@12"        @114
     121    OleMetafilePictFromIconAndLabel  = "_DbgOleMetafilePictFromIconAndLabel@16" @115
     122    OleNoteObjectVisible       = "_DbgOleNoteObjectVisible@8"   @116
     123    OleQueryCreateFromData     = "_DbgOleQueryCreateFromData@4" @117
     124    OleQueryLinkFromData       = "_DbgOleQueryLinkFromData@4"   @118
     125    OleRegEnumFormatEtc        = "_DbgOleRegEnumFormatEtc@12"   @119
     126    OleRegEnumVerbs            = "_DbgOleRegEnumVerbs@8"        @120
     127    OleRegGetMiscStatus        = "_DbgOleRegGetMiscStatus@12"   @121
     128    OleRegGetUserType          = "_DbgOleRegGetUserType@12"     @122
     129    OleRun                     = "_DbgOleRun@4"                 @123
     130    OleSave                    = "_DbgOleSave@12"               @124
     131    OleSaveToStream            = "_DbgOleSaveToStream@8"        @125
     132    OleSetAutoConvert          = "_DbgOleSetAutoConvert@8"      @126
     133    OleSetClipboard            = "_DbgOleSetClipboard@4"        @127
     134    OleSetContainedObject      = "_DbgOleSetContainedObject@8"  @128
     135    OleSetMenuDescriptor       = "_DbgOleSetMenuDescriptor@20"  @129
     136    OleTranslateAccelerator    = "_DbgOleTranslateAccelerator@12" @130
     137    OleUninitialize            = "_DbgOleUninitialize@0"        @131
     138    OpenOrCreateStream         = "_DbgOpenOrCreateStream@0"     @132
     139    ProgIDFromCLSID            = "_DbgProgIDFromCLSID@8"        @133
     140    ReadClassStg               = "_DbgReadClassStg@8"           @134
     141    ReadClassStm               = "_DbgReadClassStm@8"           @135
     142    ReadFmtUserTypeStg         = "_DbgReadFmtUserTypeStg@12"    @136
     143    ReadOleStg                 = "_DbgReadOleStg@0"             @137
     144    ReadStringStream           = "_DbgReadStringStream@0"       @138
     145    RegisterDragDrop           = "_DbgRegisterDragDrop@8"       @139
     146    ReleaseStgMedium           = "_DbgReleaseStgMedium@4"       @140
     147    RevokeDragDrop             = "_DbgRevokeDragDrop@4"         @141
     148    SetConvertStg              = "_DbgSetConvertStg@8"          @142
     149    SetDocumentBitStg          = "_DbgSetDocumentBitStg@0"      @143
     150    StgCreateDocfile           = "_DbgStgCreateDocfile@16"      @144
     151    StgCreateDocfileOnILockBytes  = "_DbgStgCreateDocfileOnILockBytes@16" @145
     152    StgIsStorageFile           = "_DbgStgIsStorageFile@4"       @146
     153    StgIsStorageILockBytes     = "_DbgStgIsStorageILockBytes@4" @147
     154    StgOpenStorage             = "_DbgStgOpenStorage@24"         @148
     155    StgOpenStorageOnILockBytes  = "_DbgStgOpenStorageOnILockBytes@24" @149
     156    StgSetTimes                = "_DbgStgSetTimes@16"           @150
     157    StringFromCLSID            = "_DbgStringFromCLSID@8"        @151
     158    StringFromGUID2            = "_DbgStringFromGUID2@12"       @152
     159    StringFromIID              = "_DbgStringFromCLSID@8"        @153
     160    UtConvertDvtd16toDvtd32    = "_DbgUtConvertDvtd16toDvtd32@0"  @154
     161    UtConvertDvtd32toDvtd16    = "_DbgUtConvertDvtd32toDvtd16@0"  @155
     162    UtGetDvtd16Info            = "_DbgUtGetDvtd16Info@0"        @156
     163    UtGetDvtd32Info            = "_DbgUtGetDvtd32Info@0"        @157
     164    WriteClassStg              = "_DbgWriteClassStg@8"          @158
     165    WriteClassStm              = "_DbgWriteClassStm@8"          @159
     166    WriteFmtUserTypeStg        = "_DbgWriteFmtUserTypeStg@12"   @160
     167    WriteOleStg                = "_DbgWriteOleStg@0"            @161
     168    WriteStringStream          = "_DbgWriteStringStream@0"      @162
     169
     170    CoInitializeEx             = "_DbgCoInitializeEx@8"         @163
     171    CoInitializeSecurity       = "_DbgCoInitializeSecurity@36"  @164
     172    CoCreateInstanceEx         = "_DbgCoCreateInstanceEx@24"    @165
     173    PropVariantClear           = "_DbgPropVariantClear@4"       @166
    174174;167 stub CoCopyProxy                # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED
    175175;168 stub CoGetCallContext           # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED
     
    178178;171 stub CoRegisterPSClsid          # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED
    179179;172 stub CoReleaseServerProcess     # stdcall () return 0,ERR_NOTIMPLEMENTED
    180     CoResumeClassObjects       = _DbgCoResumeClassObjects@0     @173
     180    CoResumeClassObjects       = "_DbgCoResumeClassObjects@0"   @173
    181181;174 stub CoRevertToSelf             # stdcall () return 0,ERR_NOTIMPLEMENTED
    182182;175 stub CoSetProxyBlanket          # stdcall (ptr long long wstr long long ptr long) return 0,ERR_NOTIMPLEMENTED
     
    197197;190 stub CoRegisterSurrogate
    198198;191 stub CoSwitchCallContext
    199     CreateErrorInfo            = _DbgCreateErrorInfo@4          @192
     199    CreateErrorInfo            = "_DbgCreateErrorInfo@4"        @192
    200200;193 stub CreateObjrefMoniker
    201     DllRegisterServer          = _DbgOLE32_DllRegisterServer@0  @194
    202     FreePropVariantArray       = _DbgFreePropVariantArray@8     @195
    203     GetErrorInfo               = _DbgGetErrorInfo@8             @196
    204 
    205     PropVariantCopy            = _DbgPropVariantCopy@8          @246
    206 
    207     SetErrorInfo               = _DbgSetErrorInfo@8             @255
    208 
    209     CoImpersonateClient        = _DbgCoImpersonateClient@0      @997   ; suppress warning
    210     CoInitializeSecurity       = _DbgCoInitializeSecurity@36    @998   ; suppress warning
    211     CoRegisterSurrogate        = _DbgCoRegisterSurrogate@4      @999   ; suppress warning
     201    DllRegisterServer          = "_DbgOLE32_DllRegisterServer@0"  @194
     202    FreePropVariantArray       = "_DbgFreePropVariantArray@8"   @195
     203    GetErrorInfo               = "_DbgGetErrorInfo@8"           @196
     204
     205    PropVariantCopy            = "_DbgPropVariantCopy@8"        @246
     206
     207    SetErrorInfo               = "_DbgSetErrorInfo@8"           @255
     208
     209    CoImpersonateClient        = "_DbgCoImpersonateClient@0"    @997   ; suppress warning
     210    CoInitializeSecurity_998   = "_DbgCoInitializeSecurity@36"  @998   ; suppress warning
     211    CoRegisterSurrogate        = "_DbgCoRegisterSurrogate@4"    @999   ; suppress warning
    212212
    213213;
    214214;   Helper Functions
    215215;
    216     WINE_StringFromCLSID       = _DbgWINE_StringFromCLSID@8     @1000
    217     CLSIDFromStringA           = _DbgCLSIDFromStringA@8         @1001
    218     CLSIDFromString16          = _DbgCLSIDFromString16@8        @1002  ; COMPOBJ.19
     216    WINE_StringFromCLSID       = "_DbgWINE_StringFromCLSID@8"   @1000
     217    CLSIDFromStringA           = "_DbgCLSIDFromStringA@8"       @1001
     218    CLSIDFromString16          = "_DbgCLSIDFromString16@8"      @1002  ; COMPOBJ.19
    219219
    220220; private functions for drag and drop (used by user32\dragdrop.cpp)
    221     OLEDD_AcceptsDragDrop      = _OLEDD_AcceptsDragDrop@4    @1010
    222     OLEDD_DropFiles            = _OLEDD_DropFiles@4          @1011
    223     OLEDD_DragOver             = _OLEDD_DragOver@8           @1012
    224     OLEDD_DragEnter            = _OLEDD_DragEnter@12         @1013
    225     OLEDD_DragLeave            = _OLEDD_DragLeave@4          @1014
     221    OLEDD_AcceptsDragDrop      = "_OLEDD_AcceptsDragDrop@4"  @1010
     222    OLEDD_DropFiles            = "_OLEDD_DropFiles@4"        @1011
     223    OLEDD_DragOver             = "_OLEDD_DragOver@8"         @1012
     224    OLEDD_DragEnter            = "_OLEDD_DragEnter@12"       @1013
     225    OLEDD_DragLeave            = "_OLEDD_DragLeave@4"        @1014
  • TabularUnified branches/gcc-kmk/src/ole32/oleproxy.c

    r8620 r21855  
    180180        }
    181181
    182         msg->cbBuffer = ststg.cbSize.s.LowPart;
    183         msg->Buffer = HeapReAlloc(GetProcessHeap(),0,msg->Buffer,ststg.cbSize.s.LowPart);
    184         seekto.s.LowPart = 0;seekto.s.HighPart = 0;
     182        msg->cbBuffer = ststg.cbSize.DUMMYSTRUCTNAME_DOT LowPart;
     183        msg->Buffer = HeapReAlloc(GetProcessHeap(),0,msg->Buffer,ststg.cbSize.DUMMYSTRUCTNAME_DOT LowPart);
     184        seekto.DUMMYSTRUCTNAME_DOT LowPart = 0;seekto.DUMMYSTRUCTNAME_DOT HighPart = 0;
    185185        hres = IStream_Seek(pStm,seekto,SEEK_SET,&newpos);
    186186        if (hres) {
  • TabularUnified branches/gcc-kmk/src/ole32/regsvr32.cpp

    r8500 r21855  
    3939static  HRESULT sign_on(void);
    4040static  HRESULT sign_off(void);
    41 static  HRESULT report_msg(char * fmt, ...);
    42 static  HRESULT report_err(HRESULT hr, char * fmt, ...);
    43 static  HRESULT usage(char * fmt, ...);
     41static  HRESULT report_msg(const char * fmt, ...);
     42static  HRESULT report_err(HRESULT hr, const char * fmt, ...);
     43static  HRESULT usage(const char * fmt, ...);
    4444static int WIN32API EntryPoint(HINSTANCE hInstance, HINSTANCE hPrevInstance,
    4545                    LPSTR lpCmdLine, int nCmdShow);
     
    259259// report_msg
    260260// ----------------------------------------------------------------------
    261 static  HRESULT report_msg(char * fmt, ...)
     261static  HRESULT report_msg(const char * fmt, ...)
    262262{
    263263    if (!fSilent)
     
    279279// report_err
    280280// ----------------------------------------------------------------------
    281 static  HRESULT report_err(HRESULT hr, char * fmt, ...)
     281static  HRESULT report_err(HRESULT hr, const char * fmt, ...)
    282282{
    283283    va_list     va_ptr;
     
    297297// usage
    298298// ----------------------------------------------------------------------
    299 static  HRESULT usage(char * fmt, ...)
     299static  HRESULT usage(const char * fmt, ...)
    300300{
    301301    va_list     va_ptr;
  • TabularUnified branches/gcc-kmk/src/ole32/rpc.c

    r9451 r21855  
    547547  hres = IStream_Write(pStm,marshalbuffer,bufferlen,&res);
    548548  if (hres) goto out;
    549   seekto.s.LowPart = 0;seekto.s.HighPart = 0;
     549  seekto.DUMMYSTRUCTNAME_DOT LowPart = 0;seekto.DUMMYSTRUCTNAME_DOT HighPart = 0;
    550550  hres = IStream_Seek(pStm,seekto,SEEK_SET,&newpos);
    551551  hres = CoUnmarshalInterface(pStm,&IID_IClassFactory,ppv);
  • TabularUnified branches/gcc-kmk/src/ole32/stg_bigblockfile.c

    r8620 r21855  
    233233  }
    234234
    235   This->filesize.s.LowPart = GetFileSize(This->hfile,
    236                                          &This->filesize.s.HighPart);
     235  This->filesize.DUMMYSTRUCTNAME_DOT LowPart = GetFileSize(This->hfile,
     236                                         &This->filesize.DUMMYSTRUCTNAME_DOT HighPart);
    237237
    238238  This->maplist = NULL;
    239239
    240   TRACE("file len %lu\n", This->filesize.s.LowPart);
     240  TRACE("file len %lu\n", This->filesize.DUMMYSTRUCTNAME_DOT LowPart);
    241241
    242242  return TRUE;
     
    270270  ILockBytes_AddRef(This->pLkbyt);
    271271
    272   This->filesize.s.LowPart = GlobalSize(This->hbytearray);
    273   This->filesize.s.HighPart = 0;
     272  This->filesize.DUMMYSTRUCTNAME_DOT LowPart = GlobalSize(This->hbytearray);
     273  This->filesize.DUMMYSTRUCTNAME_DOT HighPart = 0;
    274274
    275275  This->pbytearray = GlobalLock(This->hbytearray);
    276276
    277   TRACE("mem on %p len %lu\n", This->pbytearray, This->filesize.s.LowPart);
     277  TRACE("mem on %p len %lu\n", This->pbytearray, This->filesize.DUMMYSTRUCTNAME_DOT LowPart);
    278278
    279279  return TRUE;
     
    330330   */
    331331  if (This->blocksize * (index + 1)
    332       > ROUND_UP(This->filesize.s.LowPart, This->blocksize))
     332      > ROUND_UP(This->filesize.DUMMYSTRUCTNAME_DOT LowPart, This->blocksize))
    333333  {
    334334    TRACE("out of range %lu vs %lu\n", This->blocksize * (index + 1),
    335           This->filesize.s.LowPart);
     335          This->filesize.DUMMYSTRUCTNAME_DOT LowPart);
    336336    return NULL;
    337337  }
     
    360360   * make sure that the block physically exists
    361361   */
    362   if ((This->blocksize * (index + 1)) > This->filesize.s.LowPart)
     362  if ((This->blocksize * (index + 1)) > This->filesize.DUMMYSTRUCTNAME_DOT LowPart)
    363363  {
    364364    ULARGE_INTEGER newSize;
    365365
    366     newSize.s.HighPart = 0;
    367     newSize.s.LowPart = This->blocksize * (index + 1);
     366    newSize.DUMMYSTRUCTNAME_DOT HighPart = 0;
     367    newSize.DUMMYSTRUCTNAME_DOT LowPart = This->blocksize * (index + 1);
    368368
    369369    BIGBLOCKFILE_SetSize(This, newSize);
     
    401401void BIGBLOCKFILE_SetSize(LPBIGBLOCKFILE This, ULARGE_INTEGER newSize)
    402402{
    403   if (This->filesize.s.LowPart == newSize.s.LowPart)
     403  if (This->filesize.DUMMYSTRUCTNAME_DOT LowPart == newSize.DUMMYSTRUCTNAME_DOT LowPart)
    404404    return;
    405405
    406   TRACE("from %lu to %lu\n", This->filesize.s.LowPart, newSize.s.LowPart);
     406  TRACE("from %lu to %lu\n", This->filesize.DUMMYSTRUCTNAME_DOT LowPart, newSize.DUMMYSTRUCTNAME_DOT LowPart);
    407407  /*
    408408   * unmap all views, must be done before call to SetEndFile
     
    433433     */
    434434    memset(buf, '0', 10);
    435     SetFilePointer(This->hfile, newSize.s.LowPart, NULL, FILE_BEGIN);
     435    SetFilePointer(This->hfile, newSize.DUMMYSTRUCTNAME_DOT LowPart, NULL, FILE_BEGIN);
    436436    WriteFile(This->hfile, buf, 10, NULL, NULL);
    437437    /*
     
    442442     * set the new end of file
    443443     */
    444     SetFilePointer(This->hfile, newSize.s.LowPart, NULL, FILE_BEGIN);
     444    SetFilePointer(This->hfile, newSize.DUMMYSTRUCTNAME_DOT LowPart, NULL, FILE_BEGIN);
    445445    SetEndOfFile(This->hfile);
    446446
     
    470470  }
    471471
    472   This->filesize.s.LowPart = newSize.s.LowPart;
    473   This->filesize.s.HighPart = newSize.s.HighPart;
     472  This->filesize.DUMMYSTRUCTNAME_DOT LowPart = newSize.DUMMYSTRUCTNAME_DOT LowPart;
     473  This->filesize.DUMMYSTRUCTNAME_DOT HighPart = newSize.DUMMYSTRUCTNAME_DOT HighPart;
    474474
    475475  BIGBLOCKFILE_RemapAllMappedPages(This);
     
    659659        DWORD desired_access;
    660660
    661         if (lowoffset + PAGE_SIZE > This->filesize.s.LowPart)
    662             numBytesToMap = This->filesize.s.LowPart - lowoffset;
     661        if (lowoffset + PAGE_SIZE > This->filesize.DUMMYSTRUCTNAME_DOT LowPart)
     662            numBytesToMap = This->filesize.DUMMYSTRUCTNAME_DOT LowPart - lowoffset;
    663663        else
    664664            numBytesToMap = PAGE_SIZE;
     
    819819        MappedPage *next = list->next;
    820820
    821         if (list->page_index * PAGE_SIZE > This->filesize.s.LowPart)
     821        if (list->page_index * PAGE_SIZE > This->filesize.DUMMYSTRUCTNAME_DOT LowPart)
    822822        {
    823823            TRACE("discarding %lu\n", list->page_index);
  • TabularUnified branches/gcc-kmk/src/ole32/stg_stream.c

    r9400 r21855  
    101101     * Start the stream at the beginning.
    102102     */
    103     newStream->currentPosition.s.HighPart = 0;
    104     newStream->currentPosition.s.LowPart = 0;
     103    newStream->currentPosition.DUMMYSTRUCTNAME_DOT HighPart = 0;
     104    newStream->currentPosition.DUMMYSTRUCTNAME_DOT LowPart = 0;
    105105
    106106    /*
    107107     * Initialize the rest of the data.
    108108     */
    109     newStream->streamSize.s.HighPart = 0;
    110     newStream->streamSize.s.LowPart  = 0;
     109    newStream->streamSize.DUMMYSTRUCTNAME_DOT HighPart = 0;
     110    newStream->streamSize.DUMMYSTRUCTNAME_DOT LowPart  = 0;
    111111    newStream->bigBlockChain       = 0;
    112112    newStream->smallBlockChain     = 0;
     
    289289     * This code supports only streams that are <32 bits in size.
    290290     */
    291     assert(This->streamSize.s.HighPart == 0);
     291    assert(This->streamSize.DUMMYSTRUCTNAME_DOT HighPart == 0);
    292292
    293293    if(curProperty.startingBlock == BLOCK_END_OF_CHAIN)
    294294    {
    295       assert( (This->streamSize.s.HighPart == 0) && (This->streamSize.s.LowPart == 0) );
     295      assert( (This->streamSize.DUMMYSTRUCTNAME_DOT HighPart == 0) && (This->streamSize.DUMMYSTRUCTNAME_DOT LowPart == 0) );
    296296    }
    297297    else
    298298    {
    299       if ( (This->streamSize.s.HighPart == 0) &&
    300            (This->streamSize.s.LowPart < LIMIT_TO_USE_SMALL_BLOCK) )
     299      if ( (This->streamSize.DUMMYSTRUCTNAME_DOT HighPart == 0) &&
     300           (This->streamSize.DUMMYSTRUCTNAME_DOT LowPart < LIMIT_TO_USE_SMALL_BLOCK) )
    301301      {
    302302        This->smallBlockChain = SmallBlockChainStream_Construct(
     
    350350   * to read from the block chain
    351351   */
    352   bytesToReadFromBuffer = min( This->streamSize.s.LowPart - This->currentPosition.s.LowPart, cb);
     352  bytesToReadFromBuffer = min( This->streamSize.DUMMYSTRUCTNAME_DOT LowPart - This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart, cb);
    353353
    354354  /*
     
    394394   * Advance the pointer for the number of positions read.
    395395   */
    396   This->currentPosition.s.LowPart += *pcbRead;
     396  This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart += *pcbRead;
    397397
    398398  if(*pcbRead != cb)
     
    464464  else
    465465  {
    466     newSize.s.HighPart = 0;
    467     newSize.s.LowPart = This->currentPosition.s.LowPart + cb;
     466    newSize.DUMMYSTRUCTNAME_DOT HighPart = 0;
     467    newSize.DUMMYSTRUCTNAME_DOT LowPart = This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart + cb;
    468468  }
    469469
     
    471471   * Verify if we need to grow the stream
    472472   */
    473   if (newSize.s.LowPart > This->streamSize.s.LowPart)
     473  if (newSize.DUMMYSTRUCTNAME_DOT LowPart > This->streamSize.DUMMYSTRUCTNAME_DOT LowPart)
    474474  {
    475475    /* grow stream */
     
    504504   * Advance the position pointer for the number of positions written.
    505505   */
    506   This->currentPosition.s.LowPart += *pcbWritten;
     506  This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart += *pcbWritten;
    507507
    508508  return S_OK;
     
    528528
    529529  TRACE("(%p, %ld, %ld, %p)\n",
    530         iface, dlibMove.s.LowPart, dwOrigin, plibNewPosition);
     530        iface, dlibMove.DUMMYSTRUCTNAME_DOT LowPart, dwOrigin, plibNewPosition);
    531531
    532532  /*
     
    547547  {
    548548    case STREAM_SEEK_SET:
    549       plibNewPosition->s.HighPart = 0;
    550       plibNewPosition->s.LowPart  = 0;
     549      plibNewPosition->DUMMYSTRUCTNAME_DOT HighPart = 0;
     550      plibNewPosition->DUMMYSTRUCTNAME_DOT LowPart  = 0;
    551551      break;
    552552    case STREAM_SEEK_CUR:
     
    560560  }
    561561
    562 #if defined(__WIN32OS2__) && defined(__IBMC__)
     562#ifdef __WIN32OS2__
    563563  *((LARGE_INTEGER*)plibNewPosition )= RtlpLargeIntegerAdd( (LARGE_INTEGER *)plibNewPosition, &dlibMove );
    564564#else
     
    591591  BOOL         Success;
    592592
    593   TRACE("(%p, %ld)\n", iface, libNewSize.s.LowPart);
     593  TRACE("(%p, %ld)\n", iface, libNewSize.DUMMYSTRUCTNAME_DOT LowPart);
    594594
    595595  /*
    596596   * As documented.
    597597   */
    598   if (libNewSize.s.HighPart != 0)
     598  if (libNewSize.DUMMYSTRUCTNAME_DOT HighPart != 0)
    599599    return STG_E_INVALIDFUNCTION;
    600600
     
    605605    return STG_E_ACCESSDENIED;
    606606
    607   if (This->streamSize.s.LowPart == libNewSize.s.LowPart)
     607  if (This->streamSize.DUMMYSTRUCTNAME_DOT LowPart == libNewSize.DUMMYSTRUCTNAME_DOT LowPart)
    608608    return S_OK;
    609609
     
    613613  if ((This->smallBlockChain == 0) && (This->bigBlockChain == 0))
    614614  {
    615     if (libNewSize.s.LowPart < LIMIT_TO_USE_SMALL_BLOCK)
     615    if (libNewSize.DUMMYSTRUCTNAME_DOT LowPart < LIMIT_TO_USE_SMALL_BLOCK)
    616616    {
    617617      This->smallBlockChain = SmallBlockChainStream_Construct(
     
    638638   */
    639639  if ( (This->smallBlockChain!=0) &&
    640        (curProperty.size.s.LowPart < LIMIT_TO_USE_SMALL_BLOCK) )
    641   {
    642     if (libNewSize.s.LowPart >= LIMIT_TO_USE_SMALL_BLOCK)
     640       (curProperty.size.DUMMYSTRUCTNAME_DOT LowPart < LIMIT_TO_USE_SMALL_BLOCK) )
     641  {
     642    if (libNewSize.DUMMYSTRUCTNAME_DOT LowPart >= LIMIT_TO_USE_SMALL_BLOCK)
    643643    {
    644644      /*
     
    667667                                       &curProperty);
    668668
    669   curProperty.size.s.HighPart = libNewSize.s.HighPart;
    670   curProperty.size.s.LowPart = libNewSize.s.LowPart;
     669  curProperty.size.DUMMYSTRUCTNAME_DOT HighPart = libNewSize.DUMMYSTRUCTNAME_DOT HighPart;
     670  curProperty.size.DUMMYSTRUCTNAME_DOT LowPart = libNewSize.DUMMYSTRUCTNAME_DOT LowPart;
    671671
    672672  if (Success)
     
    703703
    704704  TRACE("(%p, %p, %ld, %p, %p)\n",
    705         iface, pstm, cb.s.LowPart, pcbRead, pcbWritten);
     705        iface, pstm, cb.DUMMYSTRUCTNAME_DOT LowPart, pcbRead, pcbWritten);
    706706
    707707  /*
     
    711711    return STG_E_INVALIDPOINTER;
    712712
    713   totalBytesRead.s.LowPart = totalBytesRead.s.HighPart = 0;
    714   totalBytesWritten.s.LowPart = totalBytesWritten.s.HighPart = 0;
     713  totalBytesRead.DUMMYSTRUCTNAME_DOT LowPart = totalBytesRead.DUMMYSTRUCTNAME_DOT HighPart = 0;
     714  totalBytesWritten.DUMMYSTRUCTNAME_DOT LowPart = totalBytesWritten.DUMMYSTRUCTNAME_DOT HighPart = 0;
    715715
    716716  /*
     
    719719   * implementation will do the job
    720720   */
    721   while ( cb.s.LowPart > 0 )
    722   {
    723     if ( cb.s.LowPart >= 128 )
     721  while ( cb.DUMMYSTRUCTNAME_DOT LowPart > 0 )
     722  {
     723    if ( cb.DUMMYSTRUCTNAME_DOT LowPart >= 128 )
    724724      copySize = 128;
    725725    else
    726       copySize = cb.s.LowPart;
     726      copySize = cb.DUMMYSTRUCTNAME_DOT LowPart;
    727727
    728728    IStream_Read(iface, tmpBuffer, copySize, &bytesRead);
    729729
    730     totalBytesRead.s.LowPart += bytesRead;
     730    totalBytesRead.DUMMYSTRUCTNAME_DOT LowPart += bytesRead;
    731731
    732732    IStream_Write(pstm, tmpBuffer, bytesRead, &bytesWritten);
    733733
    734     totalBytesWritten.s.LowPart += bytesWritten;
     734    totalBytesWritten.DUMMYSTRUCTNAME_DOT LowPart += bytesWritten;
    735735
    736736    /*
     
    744744
    745745    if (bytesRead!=copySize)
    746       cb.s.LowPart = 0;
     746      cb.DUMMYSTRUCTNAME_DOT LowPart = 0;
    747747    else
    748       cb.s.LowPart -= bytesRead;
     748      cb.DUMMYSTRUCTNAME_DOT LowPart -= bytesRead;
    749749  }
    750750
     
    754754  if (pcbRead)
    755755  {
    756     pcbRead->s.LowPart = totalBytesRead.s.LowPart;
    757     pcbRead->s.HighPart = totalBytesRead.s.HighPart;
     756    pcbRead->DUMMYSTRUCTNAME_DOT LowPart = totalBytesRead.DUMMYSTRUCTNAME_DOT LowPart;
     757    pcbRead->DUMMYSTRUCTNAME_DOT HighPart = totalBytesRead.DUMMYSTRUCTNAME_DOT HighPart;
    758758  }
    759759
    760760  if (pcbWritten)
    761761  {
    762     pcbWritten->s.LowPart = totalBytesWritten.s.LowPart;
    763     pcbWritten->s.HighPart = totalBytesWritten.s.HighPart;
     762    pcbWritten->DUMMYSTRUCTNAME_DOT LowPart = totalBytesWritten.DUMMYSTRUCTNAME_DOT LowPart;
     763    pcbWritten->DUMMYSTRUCTNAME_DOT HighPart = totalBytesWritten.DUMMYSTRUCTNAME_DOT HighPart;
    764764  }
    765765  return hr;
  • TabularUnified branches/gcc-kmk/src/ole32/storage32.c

    r21494 r21855  
    681681  if (res == S_OK)
    682682  {
    683     TRACE("<-- STATSTG: pwcsName: %s, type: %ld, cbSize.Low/High: %ld/%ld, grfMode: %08lx, grfLocksSupported: %ld, grfStateBits: %08lx\n", debugstr_w(pstatstg->pwcsName), pstatstg->type, pstatstg->cbSize.s.LowPart, pstatstg->cbSize.s.HighPart, pstatstg->grfMode, pstatstg->grfLocksSupported, pstatstg->grfStateBits);
     683    TRACE("<-- STATSTG: pwcsName: %s, type: %ld, cbSize.Low/High: %ld/%ld, grfMode: %08lx, grfLocksSupported: %ld, grfStateBits: %08lx\n", debugstr_w(pstatstg->pwcsName), pstatstg->type, pstatstg->cbSize.DUMMYSTRUCTNAME_DOT LowPart, pstatstg->cbSize.DUMMYSTRUCTNAME_DOT HighPart, pstatstg->grfMode, pstatstg->grfLocksSupported, pstatstg->grfStateBits);
    684684  }
    685685  TRACE("<-- %08lx\n", res);
     
    765765    renamedProperty.propertyType  = currentProperty.propertyType;
    766766    renamedProperty.startingBlock = currentProperty.startingBlock;
    767     renamedProperty.size.s.LowPart  = currentProperty.size.s.LowPart;
    768     renamedProperty.size.s.HighPart = currentProperty.size.s.HighPart;
     767    renamedProperty.size.DUMMYSTRUCTNAME_DOT LowPart  = currentProperty.size.DUMMYSTRUCTNAME_DOT LowPart;
     768    renamedProperty.size.DUMMYSTRUCTNAME_DOT HighPart = currentProperty.size.DUMMYSTRUCTNAME_DOT HighPart;
    769769
    770770    renamedProperty.previousProperty = PROPERTY_NULL;
     
    939939  newStreamProperty.propertyType  = PROPTYPE_STREAM;
    940940  newStreamProperty.startingBlock = BLOCK_END_OF_CHAIN;
    941   newStreamProperty.size.s.LowPart  = 0;
    942   newStreamProperty.size.s.HighPart = 0;
     941  newStreamProperty.size.DUMMYSTRUCTNAME_DOT LowPart  = 0;
     942  newStreamProperty.size.DUMMYSTRUCTNAME_DOT HighPart = 0;
    943943
    944944  newStreamProperty.previousProperty = PROPERTY_NULL;
     
    11241124  newProperty.propertyType  = PROPTYPE_STORAGE;
    11251125  newProperty.startingBlock = BLOCK_END_OF_CHAIN;
    1126   newProperty.size.s.LowPart  = 0;
    1127   newProperty.size.s.HighPart = 0;
     1126  newProperty.size.DUMMYSTRUCTNAME_DOT LowPart  = 0;
     1127  newProperty.size.DUMMYSTRUCTNAME_DOT HighPart = 0;
    11281128
    11291129  newProperty.previousProperty = PROPERTY_NULL;
     
    12461246     * initialize the size used by the property stream
    12471247     */
    1248     newSize.s.HighPart = 0;
    1249     newSize.s.LowPart  = storage->bigBlockSize * blockCount;
     1248    newSize.DUMMYSTRUCTNAME_DOT HighPart = 0;
     1249    newSize.DUMMYSTRUCTNAME_DOT LowPart  = storage->bigBlockSize * blockCount;
    12501250
    12511251    /*
     
    18751875  ULARGE_INTEGER size;
    18761876
    1877   size.s.HighPart = 0;
    1878   size.s.LowPart = 0;
     1877  size.DUMMYSTRUCTNAME_DOT HighPart = 0;
     1878  size.DUMMYSTRUCTNAME_DOT LowPart = 0;
    18791879
    18801880  hr = StorageBaseImpl_OpenStream(
     
    22832283     * Add one block for the big block depot and one block for the properties
    22842284     */
    2285     size.s.HighPart = 0;
    2286     size.s.LowPart  = This->bigBlockSize * 3;
     2285    size.DUMMYSTRUCTNAME_DOT HighPart = 0;
     2286    size.DUMMYSTRUCTNAME_DOT LowPart  = This->bigBlockSize * 3;
    22872287    BIGBLOCKFILE_SetSize(This->bigBlockFile, size);
    22882288
     
    23512351    rootProp.dirProperty      = PROPERTY_NULL;
    23522352    rootProp.startingBlock    = BLOCK_END_OF_CHAIN;
    2353     rootProp.size.s.HighPart    = 0;
    2354     rootProp.size.s.LowPart     = 0;
     2353    rootProp.size.DUMMYSTRUCTNAME_DOT HighPart    = 0;
     2354    rootProp.size.DUMMYSTRUCTNAME_DOT LowPart     = 0;
    23552355
    23562356    StorageImpl_WriteProperty(This, 0, &rootProp);
     
    31283128  ULONG          bytesRead;
    31293129
    3130   offsetInPropSet.s.HighPart = 0;
    3131   offsetInPropSet.s.LowPart  = index * PROPSET_BLOCK_SIZE;
     3130  offsetInPropSet.DUMMYSTRUCTNAME_DOT HighPart = 0;
     3131  offsetInPropSet.DUMMYSTRUCTNAME_DOT LowPart  = index * PROPSET_BLOCK_SIZE;
    31323132
    31333133  readSuccessful = BlockChainStream_ReadAt(
     
    32063206      currentProperty,
    32073207      OFFSET_PS_SIZE,
    3208       &buffer->size.s.LowPart);
    3209 
    3210     buffer->size.s.HighPart = 0;
     3208      &buffer->size.DUMMYSTRUCTNAME_DOT LowPart);
     3209
     3210    buffer->size.DUMMYSTRUCTNAME_DOT HighPart = 0;
    32113211  }
    32123212
     
    32273227  ULONG          bytesWritten;
    32283228
    3229   offsetInPropSet.s.HighPart = 0;
    3230   offsetInPropSet.s.LowPart  = index * PROPSET_BLOCK_SIZE;
     3229  offsetInPropSet.DUMMYSTRUCTNAME_DOT HighPart = 0;
     3230  offsetInPropSet.DUMMYSTRUCTNAME_DOT LowPart  = index * PROPSET_BLOCK_SIZE;
    32313231
    32323232  memset(currentProperty, 0, PROPSET_BLOCK_SIZE);
     
    32923292    currentProperty,
    32933293      OFFSET_PS_SIZE,
    3294       buffer->size.s.LowPart);
     3294      buffer->size.DUMMYSTRUCTNAME_DOT LowPart);
    32953295
    32963296  writeSuccessful = BlockChainStream_WriteAt(This->rootBlockChain,
     
    34043404   * by small block size increments.
    34053405   */
    3406   offset.s.LowPart = 0;
    3407   offset.s.HighPart = 0;
     3406  offset.DUMMYSTRUCTNAME_DOT LowPart = 0;
     3407  offset.DUMMYSTRUCTNAME_DOT HighPart = 0;
    34083408  cbTotalRead = 0;
    34093409  cbTotalWritten = 0;
     
    34263426    cbTotalWritten += cbWritten;
    34273427
    3428     offset.s.LowPart += This->smallBlockSize;
     3428    offset.DUMMYSTRUCTNAME_DOT LowPart += This->smallBlockSize;
    34293429
    34303430  } while (successRead && successWrite);
     
    34373437   */
    34383438  propertyIndex = (*ppsbChain)->ownerPropertyIndex;
    3439   size.s.HighPart = 0;
    3440   size.s.LowPart  = 0;
     3439  size.DUMMYSTRUCTNAME_DOT HighPart = 0;
     3440  size.DUMMYSTRUCTNAME_DOT LowPart  = 0;
    34413441  SmallBlockChainStream_SetSize(*ppsbChain, size);
    34423442  SmallBlockChainStream_Destroy(*ppsbChain);
     
    42654265  ULONG*         bytesRead)
    42664266{
    4267   ULONG blockNoInSequence = offset.s.LowPart / This->parentStorage->bigBlockSize;
    4268   ULONG offsetInBlock     = offset.s.LowPart % This->parentStorage->bigBlockSize;
     4267  ULONG blockNoInSequence = offset.DUMMYSTRUCTNAME_DOT LowPart / This->parentStorage->bigBlockSize;
     4268  ULONG offsetInBlock     = offset.DUMMYSTRUCTNAME_DOT LowPart % This->parentStorage->bigBlockSize;
    42694269  ULONG bytesToReadInBuffer;
    42704270  ULONG blockIndex;
     
    43534353  ULONG*            bytesWritten)
    43544354{
    4355   ULONG blockNoInSequence = offset.s.LowPart / This->parentStorage->bigBlockSize;
    4356   ULONG offsetInBlock     = offset.s.LowPart % This->parentStorage->bigBlockSize;
     4355  ULONG blockNoInSequence = offset.DUMMYSTRUCTNAME_DOT LowPart / This->parentStorage->bigBlockSize;
     4356  ULONG offsetInBlock     = offset.DUMMYSTRUCTNAME_DOT LowPart % This->parentStorage->bigBlockSize;
    43574357  ULONG bytesToWrite;
    43584358  ULONG blockIndex;
     
    44494449   * Figure out how many blocks are needed to contain the new size
    44504450   */
    4451   numBlocks = newSize.s.LowPart / This->parentStorage->bigBlockSize;
    4452 
    4453   if ((newSize.s.LowPart % This->parentStorage->bigBlockSize) != 0)
     4451  numBlocks = newSize.DUMMYSTRUCTNAME_DOT LowPart / This->parentStorage->bigBlockSize;
     4452
     4453  if ((newSize.DUMMYSTRUCTNAME_DOT LowPart % This->parentStorage->bigBlockSize) != 0)
    44544454    numBlocks++;
    44554455
     
    45494549   * Figure out how many blocks are needed to contain this stream
    45504550   */
    4551   newNumBlocks = newSize.s.LowPart / This->parentStorage->bigBlockSize;
    4552 
    4553   if ((newSize.s.LowPart % This->parentStorage->bigBlockSize) != 0)
     4551  newNumBlocks = newSize.DUMMYSTRUCTNAME_DOT LowPart / This->parentStorage->bigBlockSize;
     4552
     4553  if ((newSize.DUMMYSTRUCTNAME_DOT LowPart % This->parentStorage->bigBlockSize) != 0)
    45544554    newNumBlocks++;
    45554555
     
    46234623  ULARGE_INTEGER size = BlockChainStream_GetSize(This);
    46244624
    4625   if (newSize.s.LowPart == size.s.LowPart)
     4625  if (newSize.DUMMYSTRUCTNAME_DOT LowPart == size.DUMMYSTRUCTNAME_DOT LowPart)
    46264626    return TRUE;
    46274627
    4628   if (newSize.s.LowPart < size.s.LowPart)
     4628  if (newSize.DUMMYSTRUCTNAME_DOT LowPart < size.DUMMYSTRUCTNAME_DOT LowPart)
    46294629  {
    46304630    BlockChainStream_Shrink(This, newSize);
     
    46354635      BIGBLOCKFILE_GetSize(This->parentStorage->bigBlockFile);
    46364636
    4637     ULONG diff = newSize.s.LowPart - size.s.LowPart;
     4637    ULONG diff = newSize.DUMMYSTRUCTNAME_DOT LowPart - size.DUMMYSTRUCTNAME_DOT LowPart;
    46384638
    46394639    /*
     
    46444644                (diff % This->parentStorage->bigBlockSize) );
    46454645
    4646     fileSize.s.LowPart += diff;
     4646    fileSize.DUMMYSTRUCTNAME_DOT LowPart += diff;
    46474647    BIGBLOCKFILE_SetSize(This->parentStorage->bigBlockFile, fileSize);
    46484648
     
    46844684     */
    46854685    ULARGE_INTEGER result;
    4686     result.s.HighPart = 0;
    4687 
    4688     result.s.LowPart  =
     4686    result.DUMMYSTRUCTNAME_DOT HighPart = 0;
     4687
     4688    result.DUMMYSTRUCTNAME_DOT LowPart  =
    46894689      BlockChainStream_GetCount(This) *
    46904690      This->parentStorage->bigBlockSize;
     
    47674767  *nextBlockInChain = BLOCK_END_OF_CHAIN;
    47684768
    4769   offsetOfBlockInDepot.s.HighPart = 0;
    4770   offsetOfBlockInDepot.s.LowPart  = blockIndex * sizeof(ULONG);
     4769  offsetOfBlockInDepot.DUMMYSTRUCTNAME_DOT HighPart = 0;
     4770  offsetOfBlockInDepot.DUMMYSTRUCTNAME_DOT LowPart  = blockIndex * sizeof(ULONG);
    47714771
    47724772  /*
     
    48064806  ULONG  bytesWritten;
    48074807
    4808   offsetOfBlockInDepot.s.HighPart = 0;
    4809   offsetOfBlockInDepot.s.LowPart  = blockIndex * sizeof(ULONG);
     4808  offsetOfBlockInDepot.DUMMYSTRUCTNAME_DOT HighPart = 0;
     4809  offsetOfBlockInDepot.DUMMYSTRUCTNAME_DOT LowPart  = blockIndex * sizeof(ULONG);
    48104810
    48114811  StorageUtl_WriteDWord(&buffer, 0, nextBlock);
     
    48524852  ULONG smallBlocksPerBigBlock;
    48534853
    4854   offsetOfBlockInDepot.s.HighPart = 0;
     4854  offsetOfBlockInDepot.DUMMYSTRUCTNAME_DOT HighPart = 0;
    48554855
    48564856  /*
     
    48594859  while (nextBlockIndex != BLOCK_UNUSED)
    48604860  {
    4861     offsetOfBlockInDepot.s.LowPart = blockIndex * sizeof(ULONG);
     4861    offsetOfBlockInDepot.DUMMYSTRUCTNAME_DOT LowPart = blockIndex * sizeof(ULONG);
    48624862
    48634863    success = BlockChainStream_ReadAt(
     
    49464946
    49474947        rootProp.startingBlock = sbStartIndex;
    4948         rootProp.size.s.HighPart = 0;
    4949         rootProp.size.s.LowPart  = This->parentStorage->bigBlockSize;
     4948        rootProp.size.DUMMYSTRUCTNAME_DOT HighPart = 0;
     4949        rootProp.size.DUMMYSTRUCTNAME_DOT LowPart  = This->parentStorage->bigBlockSize;
    49504950
    49514951        StorageImpl_WriteProperty(
     
    49734973      &rootProp);
    49744974
    4975     if (rootProp.size.s.LowPart <
     4975    if (rootProp.size.DUMMYSTRUCTNAME_DOT LowPart <
    49764976       (blocksRequired * This->parentStorage->bigBlockSize))
    49774977    {
    4978       rootProp.size.s.LowPart += This->parentStorage->bigBlockSize;
     4978      rootProp.size.DUMMYSTRUCTNAME_DOT LowPart += This->parentStorage->bigBlockSize;
    49794979
    49804980      BlockChainStream_SetSize(
     
    50085008  ULARGE_INTEGER offsetInBigBlockFile;
    50095009  ULONG blockNoInSequence =
    5010     offset.s.LowPart / This->parentStorage->smallBlockSize;
    5011 
    5012   ULONG offsetInBlock = offset.s.LowPart % This->parentStorage->smallBlockSize;
     5010    offset.DUMMYSTRUCTNAME_DOT LowPart / This->parentStorage->smallBlockSize;
     5011
     5012  ULONG offsetInBlock = offset.DUMMYSTRUCTNAME_DOT LowPart % This->parentStorage->smallBlockSize;
    50135013  ULONG bytesToReadInBuffer;
    50145014  ULONG blockIndex;
     
    50195019   * This should never happen on a small block file.
    50205020   */
    5021   assert(offset.s.HighPart==0);
     5021  assert(offset.DUMMYSTRUCTNAME_DOT HighPart==0);
    50225022
    50235023  /*
     
    50515051     * Calculate the offset of the small block in the small block file.
    50525052     */
    5053     offsetInBigBlockFile.s.HighPart  = 0;
    5054     offsetInBigBlockFile.s.LowPart   =
     5053    offsetInBigBlockFile.DUMMYSTRUCTNAME_DOT HighPart  = 0;
     5054    offsetInBigBlockFile.DUMMYSTRUCTNAME_DOT LowPart   =
    50555055      blockIndex * This->parentStorage->smallBlockSize;
    50565056
    5057     offsetInBigBlockFile.s.LowPart  += offsetInBlock;
     5057    offsetInBigBlockFile.DUMMYSTRUCTNAME_DOT LowPart  += offsetInBlock;
    50585058
    50595059    /*
     
    50985098  ULARGE_INTEGER offsetInBigBlockFile;
    50995099  ULONG blockNoInSequence =
    5100     offset.s.LowPart / This->parentStorage->smallBlockSize;
    5101 
    5102   ULONG offsetInBlock = offset.s.LowPart % This->parentStorage->smallBlockSize;
     5100    offset.DUMMYSTRUCTNAME_DOT LowPart / This->parentStorage->smallBlockSize;
     5101
     5102  ULONG offsetInBlock = offset.DUMMYSTRUCTNAME_DOT LowPart % This->parentStorage->smallBlockSize;
    51035103  ULONG bytesToWriteInBuffer;
    51045104  ULONG blockIndex;
     
    51095109   * This should never happen on a small block file.
    51105110   */
    5111   assert(offset.s.HighPart==0);
     5111  assert(offset.DUMMYSTRUCTNAME_DOT HighPart==0);
    51125112
    51135113  /*
     
    51425142     * Calculate the offset of the small block in the small block file.
    51435143     */
    5144     offsetInBigBlockFile.s.HighPart  = 0;
    5145     offsetInBigBlockFile.s.LowPart   =
     5144    offsetInBigBlockFile.DUMMYSTRUCTNAME_DOT HighPart  = 0;
     5145    offsetInBigBlockFile.DUMMYSTRUCTNAME_DOT LowPart   =
    51465146      blockIndex * This->parentStorage->smallBlockSize;
    51475147
    5148     offsetInBigBlockFile.s.LowPart  += offsetInBlock;
     5148    offsetInBigBlockFile.DUMMYSTRUCTNAME_DOT LowPart  += offsetInBlock;
    51495149
    51505150    /*
     
    51875187  ULONG count = 0;
    51885188
    5189   numBlocks = newSize.s.LowPart / This->parentStorage->smallBlockSize;
    5190 
    5191   if ((newSize.s.LowPart % This->parentStorage->smallBlockSize) != 0)
     5189  numBlocks = newSize.DUMMYSTRUCTNAME_DOT LowPart / This->parentStorage->smallBlockSize;
     5190
     5191  if ((newSize.DUMMYSTRUCTNAME_DOT LowPart % This->parentStorage->smallBlockSize) != 0)
    51925192    numBlocks++;
    51935193
     
    53005300   * Figure out how many blocks are needed to contain this stream
    53015301   */
    5302   newNumBlocks = newSize.s.LowPart / This->parentStorage->smallBlockSize;
    5303 
    5304   if ((newSize.s.LowPart % This->parentStorage->smallBlockSize) != 0)
     5302  newNumBlocks = newSize.DUMMYSTRUCTNAME_DOT LowPart / This->parentStorage->smallBlockSize;
     5303
     5304  if ((newSize.DUMMYSTRUCTNAME_DOT LowPart % This->parentStorage->smallBlockSize) != 0)
    53055305    newNumBlocks++;
    53065306
     
    53765376  ULARGE_INTEGER size = SmallBlockChainStream_GetSize(This);
    53775377
    5378   if (newSize.s.LowPart == size.s.LowPart)
     5378  if (newSize.DUMMYSTRUCTNAME_DOT LowPart == size.DUMMYSTRUCTNAME_DOT LowPart)
    53795379    return TRUE;
    53805380
    5381   if (newSize.s.LowPart < size.s.LowPart)
     5381  if (newSize.DUMMYSTRUCTNAME_DOT LowPart < size.DUMMYSTRUCTNAME_DOT LowPart)
    53825382  {
    53835383    SmallBlockChainStream_Shrink(This, newSize);
     
    58225822  ULARGE_INTEGER offset;
    58235823
    5824   offset.s.HighPart = 0;
    5825   offset.s.LowPart  = 0;
     5824  offset.DUMMYSTRUCTNAME_DOT HighPart = 0;
     5825  offset.DUMMYSTRUCTNAME_DOT LowPart  = 0;
    58265826
    58275827  ILockBytes_ReadAt(plkbyt, offset, sig, sizeof(sig), NULL);
     
    68106810
    68116811        /*Get the OleType from the CompObj Stream */
    6812         iSeekPos.s.LowPart = sizeof(CompObj.byUnknown1) + sizeof(CompObj.clsid);
    6813         iSeekPos.s.HighPart = 0;
     6812        iSeekPos.DUMMYSTRUCTNAME_DOT LowPart = sizeof(CompObj.byUnknown1) + sizeof(CompObj.clsid);
     6813        iSeekPos.DUMMYSTRUCTNAME_DOT HighPart = 0;
    68146814
    68156815        IStream_Seek(pStream, iSeekPos, STREAM_SEEK_SET, NULL);
    68166816        IStream_Read(pStream, &CompObj.dwCLSIDNameLength, sizeof(CompObj.dwCLSIDNameLength), NULL);
    6817         iSeekPos.s.LowPart = CompObj.dwCLSIDNameLength;
     6817        iSeekPos.DUMMYSTRUCTNAME_DOT LowPart = CompObj.dwCLSIDNameLength;
    68186818        IStream_Seek(pStream, iSeekPos, STREAM_SEEK_CUR , NULL);
    68196819        IStream_Read(pStream, &CompObj.dwOleTypeNameLength, sizeof(CompObj.dwOleTypeNameLength), NULL);
    6820         iSeekPos.s.LowPart = CompObj.dwOleTypeNameLength;
     6820        iSeekPos.DUMMYSTRUCTNAME_DOT LowPart = CompObj.dwOleTypeNameLength;
    68216821        IStream_Seek(pStream, iSeekPos, STREAM_SEEK_CUR , NULL);
    68226822
     
    69576957        strcpy(pOleStreamData[1].strOleTypeName, strMetafilePictName);
    69586958
    6959         iSeekPos.s.HighPart = 0;
    6960         iSeekPos.s.LowPart = sizeof(olePress.byUnknown1);
     6959        iSeekPos.DUMMYSTRUCTNAME_DOT HighPart = 0;
     6960        iSeekPos.DUMMYSTRUCTNAME_DOT LowPart = sizeof(olePress.byUnknown1);
    69616961
    69626962        /* Get Presentation Data */
Note: See TracChangeset for help on using the changeset viewer.