Changeset 21855
- Timestamp:
- Dec 6, 2011, 6:19:13 PM (13 years ago)
- 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 703 703 typedef struct IMalloc16 IMalloc16,*LPMALLOC16; 704 704 typedef struct IMalloc IMalloc,*LPMALLOC; 705 typedef const IMalloc *LPCMALLOC; 705 706 706 707 DEFINE_OLEGUID(IID_IUnknown, 0x00000000L, 0, 0); -
TabularUnified branches/gcc-kmk/src/Makefile.kmk ¶
r21849 r21855 28 28 include $(PATH_SUB_CURRENT)/advapi32/Makefile.kmk 29 29 include $(PATH_SUB_CURRENT)/rpcrt4/Makefile.kmk 30 include $(PATH_SUB_CURRENT)/oleaut32/Makefile.kmk 31 include $(PATH_SUB_CURRENT)/ole32/Makefile.kmk 30 32 31 33 include $(FILE_KBUILD_SUB_FOOTER) -
TabularUnified branches/gcc-kmk/src/ole32/antimoniker.c ¶
r8620 r21855 281 281 /* Normaly the sizemax must be the size of DWORD ! but I tested this function it ususlly return 16 bytes */ 282 282 /* 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; 286 286 287 287 return S_OK; -
TabularUnified branches/gcc-kmk/src/ole32/clipboard.c ¶
r8620 r21855 937 937 hStorage = GlobalAlloc(GMEM_SHARE|GMEM_MOVEABLE, 0); 938 938 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); 940 940 941 941 if (FAILED(hr = IDataObject_GetDataHere(theOleClipboard->pIDataObjectSrc, pFormatetc, &std))) … … 964 964 if (!FAILED(hr = IDataObject_GetData(theOleClipboard->pIDataObjectSrc, &fmt2, &std2))) 965 965 { 966 mfp = (METAFILEPICT *)GlobalLock(std2. u.hGlobal);966 mfp = (METAFILEPICT *)GlobalLock(std2.DUMMYUNIONNAME_DOT hGlobal); 967 967 } 968 968 … … 994 994 pdh.dwSize = nSize; 995 995 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); 997 997 998 998 hr = IStream_Write(pStream, &pdh, sizeof(PresentationDataHeader), NULL); … … 1007 1007 HeapFree(GetProcessHeap(), 0, mfBits); 1008 1008 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); 1012 1012 ProgIDFromCLSID(&clsID, &strProgID); 1013 1013 1014 1014 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); 1017 1017 } 1018 1018 } … … 1028 1028 /* To put a copy back on the clipboard */ 1029 1029 1030 hStorage = std. u.hGlobal;1030 hStorage = std.DUMMYUNIONNAME_DOT hGlobal; 1031 1031 } 1032 1032 … … 1278 1278 */ 1279 1279 pmedium->tymed = (hData == 0) ? TYMED_NULL : TYMED_HGLOBAL; 1280 pmedium-> u.hGlobal = (HGLOBAL)hData;1280 pmedium->DUMMYUNIONNAME_DOT hGlobal = (HGLOBAL)hData; 1281 1281 pmedium->pUnkForRelease = NULL; 1282 1282 -
TabularUnified branches/gcc-kmk/src/ole32/compobj.c ¶
r10625 r21855 507 507 * the string representation and HRESULT 508 508 */ 509 HRESULT WIN E_StringFromCLSID(509 HRESULT WINAPI WINE_StringFromCLSID( 510 510 const CLSID *id, /* [in] GUID to be converted */ 511 511 LPSTR idstr /* [out] pointer to buffer to contain converted guid */ … … 899 899 if (hres) return hres; 900 900 901 buflen = ststg.cbSize. s.LowPart;901 buflen = ststg.cbSize.DUMMYSTRUCTNAME_DOT LowPart; 902 902 buffer = HeapAlloc(GetProcessHeap(),0,buflen); 903 seekto. s.LowPart = 0;904 seekto. s.HighPart = 0;903 seekto.DUMMYSTRUCTNAME_DOT LowPart = 0; 904 seekto.DUMMYSTRUCTNAME_DOT HighPart = 0; 905 905 hres = IStream_Seek(pStm,seekto,SEEK_SET,&newpos); 906 906 if (hres) { -
TabularUnified branches/gcc-kmk/src/ole32/compobj_private.h ¶
r9400 r21855 36 36 #include "wtypes.h" 37 37 38 extern HRESULT WIN E_StringFromCLSID(const CLSID *id,LPSTR idstr);38 extern HRESULT WINAPI CoGetPSClsid(REFIID riid, CLSID *pclsid); 39 39 extern HRESULT create_marshalled_proxy(REFCLSID rclsid, REFIID iid, LPVOID *ppv); 40 40 -
TabularUnified branches/gcc-kmk/src/ole32/compositemoniker.c ¶
r8620 r21855 436 436 return E_POINTER; 437 437 438 pcbSize-> s.LowPart =0;439 pcbSize-> s.HighPart=0;438 pcbSize->DUMMYSTRUCTNAME_DOT LowPart =0; 439 pcbSize->DUMMYSTRUCTNAME_DOT HighPart=0; 440 440 441 441 IMoniker_Enum(iface,TRUE,&enumMk); … … 447 447 IMoniker_Release(pmk); 448 448 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; 451 451 } 452 452 -
TabularUnified branches/gcc-kmk/src/ole32/datacache.c ¶
r9400 r21855 700 700 701 701 return (elem->type == STGTY_STREAM) 702 && (elem->cbSize. s.LowPart >= sizeof(PresentationDataHeader))702 && (elem->cbSize.DUMMYSTRUCTNAME_DOT LowPart >= sizeof(PresentationDataHeader)) 703 703 && (strlenW(name) == 11) 704 704 && (strncmpW(name, OlePres, 8) == 0) … … 769 769 /* Rewind the stream before returning it. */ 770 770 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; 773 773 IStream_Seek(pStm, offset, STREAM_SEEK_SET, NULL); 774 774 … … 839 839 * Skip the header 840 840 */ 841 offset. s.HighPart = 0;842 offset. s.LowPart = sizeof(PresentationDataHeader);841 offset.DUMMYSTRUCTNAME_DOT HighPart = 0; 842 offset.DUMMYSTRUCTNAME_DOT LowPart = sizeof(PresentationDataHeader); 843 843 844 844 hres = IStream_Seek( … … 848 848 NULL); 849 849 850 streamInfo.cbSize. s.LowPart -= offset.s.LowPart;850 streamInfo.cbSize.DUMMYSTRUCTNAME_DOT LowPart -= offset.DUMMYSTRUCTNAME_DOT LowPart; 851 851 852 852 /* … … 855 855 metafileBits = HeapAlloc(GetProcessHeap(), 856 856 0, 857 streamInfo.cbSize. s.LowPart);857 streamInfo.cbSize.DUMMYSTRUCTNAME_DOT LowPart); 858 858 859 859 /* … … 863 863 presStream, 864 864 metafileBits, 865 streamInfo.cbSize. s.LowPart,865 streamInfo.cbSize.DUMMYSTRUCTNAME_DOT LowPart, 866 866 NULL); 867 867 … … 871 871 if (SUCCEEDED(hres)) 872 872 { 873 newMetafile = SetMetaFileBitsEx(streamInfo.cbSize. s.LowPart, metafileBits);873 newMetafile = SetMetaFileBitsEx(streamInfo.cbSize.DUMMYSTRUCTNAME_DOT LowPart, metafileBits); 874 874 } 875 875 … … 1141 1141 GlobalUnlock(hGlobalMF); 1142 1142 1143 pmedium-> u.hGlobal = hGlobalMF;1143 pmedium->DUMMYUNIONNAME_DOT hGlobal = hGlobalMF; 1144 1144 pmedium->tymed = TYMED_MFPICT; 1145 1145 hrRet = S_OK; -
TabularUnified branches/gcc-kmk/src/ole32/dbgwrap.cpp ¶
r8007 r21855 10 10 #include <winnls.h> 11 11 #include <ntddk.h> 12 #include "ole32.h" 12 13 #include <heapstring.h> 13 #include "ole32.h"14 14 #include "wine/obj_errorinfo.h" 15 15 #include "wine/obj_oleaut.h" -
TabularUnified branches/gcc-kmk/src/ole32/filemoniker.c ¶
r9400 r21855 452 452 len*sizeof(WCHAR); /* unicde filePath string */ 453 453 454 pcbSize-> s.LowPart=sizeMAx;455 pcbSize-> s.HighPart=0;454 pcbSize->DUMMYSTRUCTNAME_DOT LowPart=sizeMAx; 455 pcbSize->DUMMYSTRUCTNAME_DOT HighPart=0; 456 456 457 457 return S_OK; -
TabularUnified branches/gcc-kmk/src/ole32/hglobalstream.c ¶
r9400 r21855 279 279 * Start the stream at the beginning. 280 280 */ 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; 283 283 284 284 /* 285 285 * Initialize the size of the stream to the size of the handle. 286 286 */ 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); 289 289 } 290 290 … … 442 442 * to read from the block chain 443 443 */ 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); 445 445 446 446 /* … … 449 449 supportBuffer = GlobalLock(This->supportHandle); 450 450 451 memcpy(pv, (char *) supportBuffer+This->currentPosition. s.LowPart, bytesToReadFromBuffer);451 memcpy(pv, (char *) supportBuffer+This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart, bytesToReadFromBuffer); 452 452 453 453 /* 454 454 * Move the current position to the new position 455 455 */ 456 This->currentPosition. s.LowPart+=bytesToReadFromBuffer;456 This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart+=bytesToReadFromBuffer; 457 457 458 458 /* … … 515 515 else 516 516 { 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; 519 519 } 520 520 … … 522 522 * Verify if we need to grow the stream 523 523 */ 524 if (newSize. s.LowPart > This->streamSize.s.LowPart)524 if (newSize.DUMMYSTRUCTNAME_DOT LowPart > This->streamSize.DUMMYSTRUCTNAME_DOT LowPart) 525 525 { 526 526 /* grow stream */ … … 533 533 supportBuffer = GlobalLock(This->supportHandle); 534 534 535 memcpy((char *) supportBuffer+This->currentPosition. s.LowPart, pv, cb);535 memcpy((char *) supportBuffer+This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart, pv, cb); 536 536 537 537 /* 538 538 * Move the current position to the new position 539 539 */ 540 This->currentPosition. s.LowPart+=cb;540 This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart+=cb; 541 541 542 542 /* … … 572 572 573 573 TRACE("(%p, %ld, %ld, %p)\n", iface, 574 dlibMove. s.LowPart, dwOrigin, plibNewPosition);574 dlibMove.DUMMYSTRUCTNAME_DOT LowPart, dwOrigin, plibNewPosition); 575 575 576 576 /* … … 581 581 { 582 582 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; 585 585 break; 586 586 case STREAM_SEEK_CUR: … … 627 627 HGLOBALStreamImpl* const This=(HGLOBALStreamImpl*)iface; 628 628 629 TRACE("(%p, %ld)\n", iface, libNewSize. s.LowPart);629 TRACE("(%p, %ld)\n", iface, libNewSize.DUMMYSTRUCTNAME_DOT LowPart); 630 630 631 631 /* 632 632 * As documented. 633 633 */ 634 if (libNewSize. s.HighPart != 0)634 if (libNewSize.DUMMYSTRUCTNAME_DOT HighPart != 0) 635 635 return STG_E_INVALIDFUNCTION; 636 636 637 if (This->streamSize. s.LowPart == libNewSize.s.LowPart)637 if (This->streamSize.DUMMYSTRUCTNAME_DOT LowPart == libNewSize.DUMMYSTRUCTNAME_DOT LowPart) 638 638 return S_OK; 639 639 … … 642 642 */ 643 643 This->supportHandle = GlobalReAlloc(This->supportHandle, 644 libNewSize. s.LowPart,644 libNewSize.DUMMYSTRUCTNAME_DOT LowPart, 645 645 0); 646 646 647 This->streamSize. s.LowPart = libNewSize.s.LowPart;647 This->streamSize.DUMMYSTRUCTNAME_DOT LowPart = libNewSize.DUMMYSTRUCTNAME_DOT LowPart; 648 648 649 649 return S_OK; … … 671 671 672 672 TRACE("(%p, %p, %ld, %p, %p)\n", iface, pstm, 673 cb. s.LowPart, pcbRead, pcbWritten);673 cb.DUMMYSTRUCTNAME_DOT LowPart, pcbRead, pcbWritten); 674 674 675 675 /* … … 679 679 return STG_E_INVALIDPOINTER; 680 680 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; 683 683 684 684 /* … … 687 687 * implementation will do the job 688 688 */ 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 ) 692 692 copySize = 128; 693 693 else 694 copySize = cb. s.LowPart;694 copySize = cb.DUMMYSTRUCTNAME_DOT LowPart; 695 695 696 696 IStream_Read(iface, tmpBuffer, copySize, &bytesRead); 697 697 698 totalBytesRead. s.LowPart += bytesRead;698 totalBytesRead.DUMMYSTRUCTNAME_DOT LowPart += bytesRead; 699 699 700 700 IStream_Write(pstm, tmpBuffer, bytesRead, &bytesWritten); 701 701 702 totalBytesWritten. s.LowPart += bytesWritten;702 totalBytesWritten.DUMMYSTRUCTNAME_DOT LowPart += bytesWritten; 703 703 704 704 /* … … 712 712 713 713 if (bytesRead!=copySize) 714 cb. s.LowPart = 0;714 cb.DUMMYSTRUCTNAME_DOT LowPart = 0; 715 715 else 716 cb. s.LowPart -= bytesRead;716 cb.DUMMYSTRUCTNAME_DOT LowPart -= bytesRead; 717 717 } 718 718 … … 722 722 if (pcbRead) 723 723 { 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; 726 726 } 727 727 728 728 if (pcbWritten) 729 729 { 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; 732 732 } 733 733 return hr; -
TabularUnified branches/gcc-kmk/src/ole32/ifs.c ¶
r10623 r21855 256 256 * win2k: size originally requested !!! (allocated on 8 byte boundarys) 257 257 */ 258 static DWORD WINAPI IMalloc_fnGetSize(LP MALLOC iface,LPVOID pv) {258 static DWORD WINAPI IMalloc_fnGetSize(LPCMALLOC iface,LPVOID pv) { 259 259 260 260 DWORD cb; … … 281 281 * IMalloc32_DidAlloc [VTABLE] 282 282 */ 283 static INT WINAPI IMalloc_fnDidAlloc(LP MALLOC iface,LPVOID pv) {283 static INT WINAPI IMalloc_fnDidAlloc(LPCMALLOC iface,LPVOID pv) { 284 284 285 285 BOOL fSpyed = 0; … … 305 305 * IMalloc32_HeapMinimize [VTABLE] 306 306 */ 307 static VOID WINAPI IMalloc_fnHeapMinimize(LPMALLOC iface) {307 static LPVOID WINAPI IMalloc_fnHeapMinimize(LPMALLOC iface) { 308 308 TRACE("()\n"); 309 309 -
TabularUnified branches/gcc-kmk/src/ole32/initterm.cpp ¶
r21842 r21855 1 1 /* 2 * DLL entry point2 * OLE32 DLL entry point 3 3 * 4 4 * Copyright 1998 Sander van Leeuwen 5 5 * Copyright 1998 Peter Fitzsimmons 6 6 * 7 *8 7 * Project Odin Software License can be found in LICENSE.TXT 9 *10 8 */ 11 9 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 */25 10 #define INCL_DOSMODULEMGR 26 11 #define INCL_DOSPROCESS … … 36 21 #include <initdll.h> 37 22 38 extern "C" { 39 //Win32 resource table (produced by wrc) 40 extern DWORD ole32os2_PEResTab; 41 } 23 // Win32 resource table (produced by wrc) 24 extern DWORD ole32_PEResTab; 25 42 26 static HMODULE dllHandle = 0; 43 27 44 28 BOOL WINAPI OLE32_DllEntryPoint(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad); 45 //****************************************************************************** 46 //****************************************************************************** 29 47 30 BOOL WINAPI LibMainOLE32(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad) 48 31 { … … 60 43 return FALSE; 61 44 } 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 46 ULONG SYSTEM DLL_InitOle32(ULONG hModule) 71 47 { 72 size_t i; 73 APIRET rc; 48 CheckVersionFromHMOD(PE2LX_VERSION, hModule); /*PLF Wed 98-03-18 05:28:48*/ 74 49 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; 80 53 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 } 87 56 88 break; 89 } 90 case 1 : 91 if(dllHandle) { 92 UnregisterLxDll(dllHandle); 93 } 94 break; 57 void SYSTEM DLL_TermOle32(ULONG hModule) 58 { 59 if (dllHandle) 60 UnregisterLxDll(dllHandle); 61 } 95 62 96 default : 97 return 0UL; 98 } 63 ULONG SYSTEM DLL_Init(ULONG hModule) 64 { 65 if (DLL_InitDefault(hModule) == -1) 66 return -1; 67 return DLL_InitOle32(hModule); 68 } 99 69 100 /***********************************************************/ 101 /* A non-zero value must be returned to indicate success. */ 102 /***********************************************************/103 return 1UL;70 void SYSTEM DLL_Term(ULONG hModule) 71 { 72 DLL_TermOle32(hModule); 73 DLL_TermDefault(hModule); 104 74 } 105 //******************************************************************************106 //****************************************************************************** -
TabularUnified branches/gcc-kmk/src/ole32/itemmoniker.c ¶
r9400 r21855 357 357 /* for more details see ItemMonikerImpl_Save coments */ 358 358 359 pcbSize-> s.LowPart = sizeof(DWORD) + /* DWORD which contains delimiter length */359 pcbSize->DUMMYSTRUCTNAME_DOT LowPart = sizeof(DWORD) + /* DWORD which contains delimiter length */ 360 360 delimiterLength + /* item delimiter string */ 361 361 sizeof(DWORD) + /* DWORD which contains item name length */ … … 363 363 34; /* this constant was added ! because when I tested this function it usually */ 364 364 /* 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; 366 366 367 367 return S_OK; -
TabularUnified branches/gcc-kmk/src/ole32/memlockbytes.c ¶
r8620 r21855 234 234 * Initialize the size of the array to the size of the handle. 235 235 */ 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( 238 238 newLockBytes->supportHandle); 239 239 } … … 384 384 * Make sure the offset is valid. 385 385 */ 386 if (ulOffset. s.LowPart > This->byteArraySize.s.LowPart)386 if (ulOffset.DUMMYSTRUCTNAME_DOT LowPart > This->byteArraySize.DUMMYSTRUCTNAME_DOT LowPart) 387 387 return E_FAIL; 388 388 … … 391 391 * to read. 392 392 */ 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); 395 395 396 396 /* … … 400 400 401 401 memcpy(pv, 402 (char *) supportBuffer + ulOffset. s.LowPart,402 (char *) supportBuffer + ulOffset.DUMMYSTRUCTNAME_DOT LowPart, 403 403 bytesToReadFromBuffer); 404 404 … … 459 459 else 460 460 { 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; 463 463 } 464 464 … … 466 466 * Verify if we need to grow the stream 467 467 */ 468 if (newSize. s.LowPart > This->byteArraySize.s.LowPart)468 if (newSize.DUMMYSTRUCTNAME_DOT LowPart > This->byteArraySize.DUMMYSTRUCTNAME_DOT LowPart) 469 469 { 470 470 /* grow stream */ … … 478 478 supportBuffer = GlobalLock(This->supportHandle); 479 479 480 memcpy((char *) supportBuffer + ulOffset. s.LowPart, pv, cb);480 memcpy((char *) supportBuffer + ulOffset.DUMMYSTRUCTNAME_DOT LowPart, pv, cb); 481 481 482 482 /* … … 519 519 * As documented. 520 520 */ 521 if (libNewSize. s.HighPart != 0)521 if (libNewSize.DUMMYSTRUCTNAME_DOT HighPart != 0) 522 522 return STG_E_INVALIDFUNCTION; 523 523 524 if (This->byteArraySize. s.LowPart == libNewSize.s.LowPart)524 if (This->byteArraySize.DUMMYSTRUCTNAME_DOT LowPart == libNewSize.DUMMYSTRUCTNAME_DOT LowPart) 525 525 return S_OK; 526 526 … … 529 529 */ 530 530 This->supportHandle = GlobalReAlloc(This->supportHandle, 531 libNewSize. s.LowPart,531 libNewSize.DUMMYSTRUCTNAME_DOT LowPart, 532 532 0); 533 533 … … 535 535 return STG_E_MEDIUMFULL; 536 536 537 This->byteArraySize. s.LowPart = libNewSize.s.LowPart;537 This->byteArraySize.DUMMYSTRUCTNAME_DOT LowPart = libNewSize.DUMMYSTRUCTNAME_DOT LowPart; 538 538 539 539 return S_OK; -
TabularUnified branches/gcc-kmk/src/ole32/ole2.c ¶
r21634 r21855 1545 1545 { 1546 1546 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; 1551 1551 break; 1552 1552 } 1553 1553 case TYMED_FILE: 1554 1554 { 1555 if (pmedium-> u.lpszFileName!=0)1555 if (pmedium->DUMMYUNIONNAME_DOT lpszFileName!=0) 1556 1556 { 1557 1557 if (pmedium->pUnkForRelease==0) 1558 1558 { 1559 DeleteFileW(pmedium-> u.lpszFileName);1559 DeleteFileW(pmedium->DUMMYUNIONNAME_DOT lpszFileName); 1560 1560 } 1561 1561 1562 CoTaskMemFree(pmedium-> u.lpszFileName);1562 CoTaskMemFree(pmedium->DUMMYUNIONNAME_DOT lpszFileName); 1563 1563 } 1564 1564 1565 pmedium-> u.lpszFileName = 0;1565 pmedium->DUMMYUNIONNAME_DOT lpszFileName = 0; 1566 1566 break; 1567 1567 } 1568 1568 case TYMED_ISTREAM: 1569 1569 { 1570 if (pmedium-> u.pstm!=0)1570 if (pmedium->DUMMYUNIONNAME_DOT pstm!=0) 1571 1571 { 1572 IStream_Release(pmedium-> u.pstm);1572 IStream_Release(pmedium->DUMMYUNIONNAME_DOT pstm); 1573 1573 } 1574 1574 1575 pmedium-> u.pstm = 0;1575 pmedium->DUMMYUNIONNAME_DOT pstm = 0; 1576 1576 break; 1577 1577 } 1578 1578 case TYMED_ISTORAGE: 1579 1579 { 1580 if (pmedium-> u.pstg!=0)1580 if (pmedium->DUMMYUNIONNAME_DOT pstg!=0) 1581 1581 { 1582 IStorage_Release(pmedium-> u.pstg);1582 IStorage_Release(pmedium->DUMMYUNIONNAME_DOT pstg); 1583 1583 } 1584 1584 1585 pmedium-> u.pstg = 0;1585 pmedium->DUMMYUNIONNAME_DOT pstg = 0; 1586 1586 break; 1587 1587 } … … 1589 1589 { 1590 1590 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; 1595 1595 break; 1596 1596 } … … 1598 1598 { 1599 1599 if ( (pmedium->pUnkForRelease==0) && 1600 (pmedium-> u.hMetaFilePict!=0) )1600 (pmedium->DUMMYUNIONNAME_DOT hMetaFilePict!=0) ) 1601 1601 { 1602 LPMETAFILEPICT pMP = GlobalLock(pmedium-> u.hGlobal);1602 LPMETAFILEPICT pMP = GlobalLock(pmedium->DUMMYUNIONNAME_DOT hGlobal); 1603 1603 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); 1606 1606 } 1607 1607 1608 pmedium-> u.hMetaFilePict = 0;1608 pmedium->DUMMYUNIONNAME_DOT hMetaFilePict = 0; 1609 1609 break; 1610 1610 } … … 1612 1612 { 1613 1613 if ( (pmedium->pUnkForRelease==0) && 1614 (pmedium-> u.hEnhMetaFile!=0) )1614 (pmedium->DUMMYUNIONNAME_DOT hEnhMetaFile!=0) ) 1615 1615 { 1616 DeleteEnhMetaFile(pmedium-> u.hEnhMetaFile);1616 DeleteEnhMetaFile(pmedium->DUMMYUNIONNAME_DOT hEnhMetaFile); 1617 1617 } 1618 1618 1619 pmedium-> u.hEnhMetaFile = 0;1619 pmedium->DUMMYUNIONNAME_DOT hEnhMetaFile = 0; 1620 1620 break; 1621 1621 } … … 2946 2946 && (This->pFormatEtc[i].tymed == pformatetcIn->tymed)) 2947 2947 { 2948 pmedium-> u.hGlobal = This->pStgMedium[i].u.hGlobal;2948 pmedium->DUMMYUNIONNAME_DOT hGlobal = This->pStgMedium[i].DUMMYUNIONNAME_DOT hGlobal; 2949 2949 break; 2950 2950 } 2951 2951 } 2952 if (pmedium-> u.hGlobal)2952 if (pmedium->DUMMYUNIONNAME_DOT hGlobal) 2953 2953 { 2954 2954 pmedium->tymed = TYMED_HGLOBAL; … … 3265 3265 fe.tymed = TYMED_HGLOBAL; 3266 3266 3267 medium. u.hGlobal = hDrop;3267 medium.DUMMYUNIONNAME_DOT hGlobal = hDrop; 3268 3268 medium.tymed = TYMED_HGLOBAL; 3269 3269 medium.pUnkForRelease = NULL; … … 3419 3419 LPVOID lpData; 3420 3420 DROPFILES *lpDrop; 3421 LPSTR *lpStringData;3421 LPSTR lpStringData; 3422 3422 ICOM_THIS(IDropTargetImpl,iface); 3423 3423 DWORD supportedformats[] = {CF_HDROP, CF_TEXT}; … … 3463 3463 continue; 3464 3464 } 3465 size = GlobalSize(This->medium. u.hGlobal);3465 size = GlobalSize(This->medium.DUMMYUNIONNAME_DOT hGlobal); 3466 3466 if(size == 0) { 3467 dprintf(("GlobalSize failed for %x", This->medium. u.hGlobal));3467 dprintf(("GlobalSize failed for %x", This->medium.DUMMYUNIONNAME_DOT hGlobal)); 3468 3468 ReleaseStgMedium(&This->medium); 3469 3469 return E_OUTOFMEMORY; 3470 3470 } 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)); 3472 3472 3473 3473 if(size == 1) {//empty string; use previous data … … 3477 3477 return E_OUTOFMEMORY; 3478 3478 } 3479 This->medium. u.hGlobal = This->hDndData;3479 This->medium.DUMMYUNIONNAME_DOT hGlobal = This->hDndData; 3480 3480 3481 3481 dprintf(("Reuse old global handle %x", This->hDndData)); 3482 size = GlobalSize(This->medium. u.hGlobal);3482 size = GlobalSize(This->medium.DUMMYUNIONNAME_DOT hGlobal); 3483 3483 if(size == 0) { 3484 dprintf(("GlobalSize failed for %x", This->medium. u.hGlobal));3484 dprintf(("GlobalSize failed for %x", This->medium.DUMMYUNIONNAME_DOT hGlobal)); 3485 3485 ReleaseStgMedium(&This->medium); 3486 3486 return E_OUTOFMEMORY; 3487 3487 } 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)); 3489 3489 } 3490 else This->hDndData = This->medium. u.hGlobal;3490 else This->hDndData = This->medium.DUMMYUNIONNAME_DOT hGlobal; 3491 3491 3492 3492 This->lpDnDData = (LPVOID)HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size); … … 3500 3500 return E_OUTOFMEMORY; 3501 3501 } 3502 lpData = GlobalLock(This->medium. u.hGlobal);3502 lpData = GlobalLock(This->medium.DUMMYUNIONNAME_DOT hGlobal); 3503 3503 3504 3504 if(This->format.cfFormat == CF_HDROP) { … … 3521 3521 } 3522 3522 dprintf(("Drop string %s", This->lpOS2StringData)); 3523 GlobalUnlock(This->medium. u.hGlobal);3523 GlobalUnlock(This->medium.DUMMYUNIONNAME_DOT hGlobal); 3524 3524 3525 3525 This->pt = pt; -
TabularUnified branches/gcc-kmk/src/ole32/ole2impl.c ¶
r8441 r21855 132 132 /* Create ILock bytes */ 133 133 134 hr1 = CreateILockBytesOnHGlobal(std. u.hGlobal, FALSE, &ptrILockBytes);134 hr1 = CreateILockBytesOnHGlobal(std.DUMMYUNIONNAME_DOT hGlobal, FALSE, &ptrILockBytes); 135 135 136 136 /* Open storage on the ILock bytes */ -
TabularUnified branches/gcc-kmk/src/ole32/ole32.def ¶
r9400 r21855 5 5 6 6 EXPORTS 7 BindMoniker = _BindMoniker@16@18 CLSIDFromProgID = _CLSIDFromProgID@8@29 CLSIDFromString = _CLSIDFromString@8@310 CoBuildVersion = _CoBuildVersion@0@411 CoCreateFreeThreadedMarshaler = _CoCreateFreeThreadedMarshaler@8@512 CoCreateGuid = _CoCreateGuid@4@613 CoCreateInstance = _CoCreateInstance@20@714 CoDisconnectObject = _CoDisconnectObject@8@815 CoDosDateTimeToFileTime = _CoDosDateTimeToFileTime@12@916 CoFileTimeNow = _CoFileTimeNow@4@1017 CoFileTimeToDosDateTime = _CoFileTimeToDosDateTime@12@1118 CoFreeAllLibraries = _CoFreeAllLibraries@0@1219 CoFreeLibrary = _CoFreeLibrary@4@1320 CoFreeUnusedLibraries = _CoFreeUnusedLibraries@0@1421 CoGetCallerTID = _CoGetCallerTID@0@1522 CoGetClassObject = _CoGetClassObject@20@1623 CoGetCurrentLogicalThreadId = _CoGetCurrentLogicalThreadId@0@1724 CoGetCurrentProcess = _CoGetCurrentProcess@0@1825 CoGetInterfaceAndReleaseStream = _CoGetInterfaceAndReleaseStream@12@1926 CoGetMalloc = _CoGetMalloc@8@2027 CoGetMarshalSizeMax = _CoGetMarshalSizeMax@24@2128 CoGetPSClsid = _CoGetPSClsid@8@2229 CoGetStandardMarshal = _CoGetStandardMarshal@24@2330 CoGetState = _CoGetState@0@2431 CoGetTreatAsClass = _CoGetTreatAsClass@8@2532 CoInitialize = _CoInitialize@4@2633 CoInitializeWOW = _CoInitializeWOW@8@2734 CoIsHandlerConnected = _CoIsHandlerConnected@4@2835 CoIsOle1Class = _CoIsOle1Class@4@2936 CoLoadLibrary = _CoLoadLibrary@8@3037 CoLockObjectExternal = _CoLockObjectExternal@12@3138 CoMarshalHresult = _CoMarshalHresult@8@3239 CoMarshalInterThreadInterfaceInStream = _CoMarshalInterThreadInterfaceInStream@12@3340 CoMarshalInterface = _CoMarshalInterface@24@3441 CoQueryReleaseObject = _CoQueryReleaseObject@0@3542 CoRegisterClassObject = _CoRegisterClassObject@20@3643 CoRegisterMallocSpy = _CoRegisterMallocSpy@4@3744 CoRegisterMessageFilter = _CoRegisterMessageFilter@8@3845 CoReleaseMarshalData = _CoReleaseMarshalData@4@3946 CoRevokeClassObject = _CoRevokeClassObject@4@4047 CoRevokeMallocSpy = _CoRevokeMallocSpy@0@4148 CoSetState = _CoSetState@4@4249 CoTaskMemAlloc = _CoTaskMemAlloc@4@4350 CoTaskMemFree = _CoTaskMemFree@4@4451 CoTaskMemRealloc = _CoTaskMemRealloc@8@4552 CoTreatAsClass = _CoTreatAsClass@8@4653 CoUninitialize = _CoUninitialize@0@4754 CoUnloadingWOW = _CoUnloadingWOW@0@4855 CoUnmarshalHresult = _CoUnmarshalHresult@8@4956 CoUnmarshalInterface = _CoUnmarshalInterface@12@5057 CreateAntiMoniker = _CreateAntiMoniker@4@5158 CreateBindCtx = _CreateBindCtx@8@5259 CreateDataAdviseHolder = _CreateDataAdviseHolder@4@5360 CreateDataCache = _CreateDataCache@16@5461 CreateFileMoniker = _CreateFileMoniker@8@5562 CreateGenericComposite = _CreateGenericComposite@12@5663 CreateILockBytesOnHGlobal = _CreateILockBytesOnHGlobal@12@5764 CreateItemMoniker = _CreateItemMoniker@12@5865 CreateOleAdviseHolder = _CreateOleAdviseHolder@4@5966 CreatePointerMoniker = _CreatePointerMoniker@8@6067 CreateStreamOnHGlobal = _CreateStreamOnHGlobal@12@6168 DllDebugObjectRPCHook = _DllDebugObjectRPCHook@0@6269 DllGetClassObject = _OLE32_DllGetClassObject@12@6370 DllGetClassObjectWOW = _DllGetClassObjectWOW@0@6471 DoDragDrop = _DoDragDrop@16@6572 EnableHookObject = _EnableHookObject@0@6673 GetClassFile = _GetClassFile@8@6774 GetConvertStg = _GetConvertStg@4@6875 GetDocumentBitStg = _GetDocumentBitStg@0@6976 GetHGlobalFromILockBytes = _GetHGlobalFromILockBytes@8@7077 GetHGlobalFromStream = _GetHGlobalFromStream@8@7178 GetHookInterface = _GetHookInterface@0@7279 GetRunningObjectTable = _GetRunningObjectTable@8@7380 IIDFromString = _CLSIDFromString@8@7481 IsAccelerator = _IsAccelerator@16@7582 IsEqualGUID = _IsEqualGUID@8@7683 IsValidIid = _IsValidIid@4@7784 IsValidInterface = _IsValidInterface@4@7885 IsValidPtrIn = _IsValidPtrIn@4@7986 IsValidPtrOut = _IsValidPtrOut@4@8087 MkParseDisplayName = _MkParseDisplayName@16@8188 MonikerCommonPrefixWith = _MonikerCommonPrefixWith@12@8289 MonikerRelativePathTo = _MonikerRelativePathTo@16@8390 OleBuildVersion = _OleBuildVersion@0@8491 OleConvertIStorageToOLESTREAM = _OleConvertIStorageToOLESTREAM@8@8592 OleConvertIStorageToOLESTREAMEx = _OleConvertIStorageToOLESTREAMEx@28@8693 OleConvertOLESTREAMToIStorage = _OleConvertOLESTREAMToIStorage@12@8794 OleConvertOLESTREAMToIStorageEx = _OleConvertOLESTREAMToIStorageEx@28@8895 OleCreate = _OleCreate@28@8996 OleCreateDefaultHandler = _OleCreateDefaultHandler@16@9097 OleCreateEmbeddingHelper = _OleCreateEmbeddingHelper@24@9198 OleCreateFromData = _OleCreateFromData@28@9299 OleCreateFromFile = _OleCreateFromFile@32@93100 OleCreateLink = _OleCreateLink@28@94101 OleCreateLinkFromData = _OleCreateLinkFromData@28@95102 OleCreateLinkToFile = _OleCreateLinkToFile@28@96103 OleCreateMenuDescriptor = _OleCreateMenuDescriptor@8@97104 OleCreateStaticFromData = _OleCreateStaticFromData@28@98105 OleDestroyMenuDescriptor = _OleDestroyMenuDescriptor@4@99106 OleDoAutoConvert = _OleDoAutoConvert@8@100107 OleDraw = _OleDraw@16@101108 OleDuplicateData = _OleDuplicateData@12@102109 OleFlushClipboard = _OleFlushClipboard@0@103110 OleGetAutoConvert = _OleGetAutoConvert@8@104111 OleGetClipboard = _OleGetClipboard@4@105112 OleGetIconOfClass = _OleGetIconOfClass@12@106113 OleGetIconOfFile = _OleGetIconOfFile@8@107114 OleInitialize = _OleInitialize@4@108115 OleInitializeWOW = _OleInitializeWOW@0@109116 OleIsCurrentClipboard = _OleIsCurrentClipboard@4@110117 OleIsRunning = _OleIsRunning@4@111118 OleLoad = _OleLoad@16@112119 OleLoadFromStream = _OleLoadFromStream@12@113120 OleLockRunning = _OleLockRunning@12@114121 OleMetafilePictFromIconAndLabel = _OleMetafilePictFromIconAndLabel@16@115122 OleNoteObjectVisible = _OleNoteObjectVisible@8@116123 OleQueryCreateFromData = _OleQueryCreateFromData@4@117124 OleQueryLinkFromData = _OleQueryLinkFromData@4@118125 OleRegEnumFormatEtc = _OleRegEnumFormatEtc@12@119126 OleRegEnumVerbs = _OleRegEnumVerbs@8@120127 OleRegGetMiscStatus = _OleRegGetMiscStatus@12@121128 OleRegGetUserType = _OleRegGetUserType@12@122129 OleRun = _OleRun@4@123130 OleSave = _OleSave@12@124131 OleSaveToStream = _OleSaveToStream@8@125132 OleSetAutoConvert = _OleSetAutoConvert@8@126133 OleSetClipboard = _OleSetClipboard@4@127134 OleSetContainedObject = _OleSetContainedObject@8@128135 OleSetMenuDescriptor = _OleSetMenuDescriptor@20@129136 OleTranslateAccelerator = _OleTranslateAccelerator@12@130137 OleUninitialize = _OleUninitialize@0@131138 OpenOrCreateStream = _OpenOrCreateStream@0@132139 ProgIDFromCLSID = _ProgIDFromCLSID@8@133140 ReadClassStg = _ReadClassStg@8@134141 ReadClassStm = _ReadClassStm@8@135142 ReadFmtUserTypeStg = _ReadFmtUserTypeStg@12@136143 ReadOleStg = _ReadOleStg@0@137144 ReadStringStream = _ReadStringStream@0@138145 RegisterDragDrop = _RegisterDragDrop@8@139146 ReleaseStgMedium = _ReleaseStgMedium@4@140147 RevokeDragDrop = _RevokeDragDrop@4@141148 SetConvertStg = _SetConvertStg@8@142149 SetDocumentBitStg = _SetDocumentBitStg@0@143150 StgCreateDocfile = _StgCreateDocfile@16@144151 StgCreateDocfileOnILockBytes = _StgCreateDocfileOnILockBytes@16@145152 StgIsStorageFile = _StgIsStorageFile@4@146153 StgIsStorageILockBytes = _StgIsStorageILockBytes@4@147154 StgOpenStorage = _StgOpenStorage@24@148155 StgOpenStorageOnILockBytes = _StgOpenStorageOnILockBytes@24@149156 StgSetTimes = _StgSetTimes@16@150157 StringFromCLSID = _StringFromCLSID@8@151158 StringFromGUID2 = _StringFromGUID2@12@152159 StringFromIID = _StringFromCLSID@8@153160 UtConvertDvtd16toDvtd32 = _UtConvertDvtd16toDvtd32@0@154161 UtConvertDvtd32toDvtd16 = _UtConvertDvtd32toDvtd16@0@155162 UtGetDvtd16Info = _UtGetDvtd16Info@0@156163 UtGetDvtd32Info = _UtGetDvtd32Info@0@157164 WriteClassStg = _WriteClassStg@8@158165 WriteClassStm = _WriteClassStm@8@159166 WriteFmtUserTypeStg = _WriteFmtUserTypeStg@12@160167 WriteOleStg = _WriteOleStg@0@161168 WriteStringStream = _WriteStringStream@0@162169 CoInitializeEx = _CoInitializeEx@8@163170 CoInitializeSecurity = _CoInitializeSecurity@36@164171 CoCreateInstanceEx = _CoCreateInstanceEx@24@165172 PropVariantClear = _PropVariantClear@4@1667 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 173 173 ;167 stub CoCopyProxy # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED 174 174 ;168 stub CoGetCallContext # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED … … 177 177 ;171 stub CoRegisterPSClsid # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED 178 178 ;172 stub CoReleaseServerProcess # stdcall () return 0,ERR_NOTIMPLEMENTED 179 CoResumeClassObjects = _CoResumeClassObjects@0@173179 CoResumeClassObjects = "_CoResumeClassObjects@0" @173 180 180 ;174 stub CoRevertToSelf # stdcall () return 0,ERR_NOTIMPLEMENTED 181 181 ;175 stub CoSetProxyBlanket # stdcall (ptr long long wstr long long ptr long) return 0,ERR_NOTIMPLEMENTED … … 196 196 ;190 stub CoRegisterSurrogate 197 197 ;191 stub CoSwitchCallContext 198 CreateErrorInfo = _CreateErrorInfo@4@192198 CreateErrorInfo = "_CreateErrorInfo@4" @192 199 199 ;193 stub CreateObjrefMoniker 200 DllRegisterServer = _OLE32_DllRegisterServer@0@194201 FreePropVariantArray = _FreePropVariantArray@8@195202 GetErrorInfo = _GetErrorInfo@8@196203 204 PropVariantCopy = _PropVariantCopy@8@246205 206 SetErrorInfo = _SetErrorInfo@8@255207 208 CoImpersonateClient = _CoImpersonateClient@0@997 ; suppress warning209 CoInitializeSecurity = _CoInitializeSecurity@36@998 ; suppress warning210 CoRegisterSurrogate = _CoRegisterSurrogate@4@999 ; suppress warning200 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 211 211 212 212 ; 213 213 ; Helper Functions 214 214 ; 215 WINE_StringFromCLSID = _WINE_StringFromCLSID@8@1000216 CLSIDFromStringA = _CLSIDFromStringA@8@1001217 CLSIDFromString16 = _CLSIDFromString16@8@1002 ; COMPOBJ.19215 WINE_StringFromCLSID = "_WINE_StringFromCLSID@8" @1000 216 CLSIDFromStringA = "_CLSIDFromStringA@8" @1001 217 CLSIDFromString16 = "_CLSIDFromString16@8" @1002 ; COMPOBJ.19 218 218 219 219 ; private functions for drag and drop (used by user32\dragdrop.cpp) 220 OLEDD_AcceptsDragDrop = _OLEDD_AcceptsDragDrop@4@1010221 OLEDD_DropFiles = _OLEDD_DropFiles@4@1011222 OLEDD_DragOver = _OLEDD_DragOver@8@1012223 OLEDD_DragEnter = _OLEDD_DragEnter@12@1013224 OLEDD_DragLeave = _OLEDD_DragLeave@4@1014220 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 5 5 6 6 EXPORTS 7 BindMoniker = _DbgBindMoniker@16@18 CLSIDFromProgID = _DbgCLSIDFromProgID@8@29 CLSIDFromString = _DbgCLSIDFromString@8@310 CoBuildVersion = _DbgCoBuildVersion@0@411 CoCreateFreeThreadedMarshaler = _DbgCoCreateFreeThreadedMarshaler@8@512 CoCreateGuid = _DbgCoCreateGuid@4@613 CoCreateInstance = _DbgCoCreateInstance@20@714 CoDisconnectObject = _DbgCoDisconnectObject@8@815 CoDosDateTimeToFileTime = _DbgCoDosDateTimeToFileTime@12@916 CoFileTimeNow = _DbgCoFileTimeNow@4@1017 CoFileTimeToDosDateTime = _DbgCoFileTimeToDosDateTime@12@1118 CoFreeAllLibraries = _DbgCoFreeAllLibraries@0@1219 CoFreeLibrary = _DbgCoFreeLibrary@4@1320 CoFreeUnusedLibraries = _DbgCoFreeUnusedLibraries@0@1421 CoGetCallerTID = _DbgCoGetCallerTID@0@1522 CoGetClassObject = _DbgCoGetClassObject@20@1623 CoGetCurrentLogicalThreadId = _DbgCoGetCurrentLogicalThreadId@0@1724 CoGetCurrentProcess = _DbgCoGetCurrentProcess@0@1825 CoGetInterfaceAndReleaseStream = _DbgCoGetInterfaceAndReleaseStream@12@1926 CoGetMalloc = _DbgCoGetMalloc@8@2027 CoGetMarshalSizeMax = _DbgCoGetMarshalSizeMax@24@2128 CoGetPSClsid = _DbgCoGetPSClsid@8@2229 CoGetStandardMarshal = _DbgCoGetStandardMarshal@24@2330 CoGetState = _DbgCoGetState@0@2431 CoGetTreatAsClass = _DbgCoGetTreatAsClass@8@2532 CoInitialize = _DbgCoInitialize@4@2633 CoInitializeWOW = _DbgCoInitializeWOW@8@2734 CoIsHandlerConnected = _DbgCoIsHandlerConnected@4@2835 CoIsOle1Class = _DbgCoIsOle1Class@4@2936 CoLoadLibrary = _DbgCoLoadLibrary@8@3037 CoLockObjectExternal = _DbgCoLockObjectExternal@12@3138 CoMarshalHresult = _DbgCoMarshalHresult@8@3239 CoMarshalInterThreadInterfaceInStream = _DbgCoMarshalInterThreadInterfaceInStream@12@3340 CoMarshalInterface = _DbgCoMarshalInterface@24@3441 CoQueryReleaseObject = _DbgCoQueryReleaseObject@0@3542 CoRegisterClassObject = _DbgCoRegisterClassObject@20@3643 CoRegisterMallocSpy = _DbgCoRegisterMallocSpy@4@3744 CoRegisterMessageFilter = _DbgCoRegisterMessageFilter@8@3845 CoReleaseMarshalData = _DbgCoReleaseMarshalData@4@3946 CoRevokeClassObject = _DbgCoRevokeClassObject@4@4047 CoRevokeMallocSpy = _DbgCoRevokeMallocSpy@0@4148 CoSetState = _DbgCoSetState@4@4249 CoTaskMemAlloc = _DbgCoTaskMemAlloc@4@4350 CoTaskMemFree = _DbgCoTaskMemFree@4@4451 CoTaskMemRealloc = _DbgCoTaskMemRealloc@8@4552 CoTreatAsClass = _DbgCoTreatAsClass@8@4653 CoUninitialize = _DbgCoUninitialize@0@4754 CoUnloadingWOW = _DbgCoUnloadingWOW@0@4855 CoUnmarshalHresult = _DbgCoUnmarshalHresult@8@4956 CoUnmarshalInterface = _DbgCoUnmarshalInterface@12@5057 CreateAntiMoniker = _DbgCreateAntiMoniker@4@5158 CreateBindCtx = _DbgCreateBindCtx@8@5259 CreateDataAdviseHolder = _DbgCreateDataAdviseHolder@4@5360 CreateDataCache = _DbgCreateDataCache@16@5461 CreateFileMoniker = _DbgCreateFileMoniker@8@5562 CreateGenericComposite = _DbgCreateGenericComposite@12@5663 CreateILockBytesOnHGlobal = _DbgCreateILockBytesOnHGlobal@12@5764 CreateItemMoniker = _DbgCreateItemMoniker@12@5865 CreateOleAdviseHolder = _DbgCreateOleAdviseHolder@4@5966 CreatePointerMoniker = _DbgCreatePointerMoniker@8@6067 CreateStreamOnHGlobal = _DbgCreateStreamOnHGlobal@12@6168 DllDebugObjectRPCHook = _DbgDllDebugObjectRPCHook@0@6269 DllGetClassObject = _DbgOLE32_DllGetClassObject@12@6370 DllGetClassObjectWOW = _DbgDllGetClassObjectWOW@0@6471 DoDragDrop = _DbgDoDragDrop@16@6572 EnableHookObject = _DbgEnableHookObject@0@6673 GetClassFile = _DbgGetClassFile@8@6774 GetConvertStg = _DbgGetConvertStg@4@6875 GetDocumentBitStg = _DbgGetDocumentBitStg@0@6976 GetHGlobalFromILockBytes = _DbgGetHGlobalFromILockBytes@8@7077 GetHGlobalFromStream = _DbgGetHGlobalFromStream@8@7178 GetHookInterface = _DbgGetHookInterface@0@7279 GetRunningObjectTable = _DbgGetRunningObjectTable@8@7380 IIDFromString = _DbgCLSIDFromString@8@7481 IsAccelerator = _DbgIsAccelerator@16@7582 IsEqualGUID = _DbgIsEqualGUID@8@7683 IsValidIid = _DbgIsValidIid@4@7784 IsValidInterface = _DbgIsValidInterface@4@7885 IsValidPtrIn = _DbgIsValidPtrIn@4@7986 IsValidPtrOut = _DbgIsValidPtrOut@4@8087 MkParseDisplayName = _DbgMkParseDisplayName@16@8188 MonikerCommonPrefixWith = _DbgMonikerCommonPrefixWith@12@8289 MonikerRelativePathTo = _DbgMonikerRelativePathTo@16@8390 OleBuildVersion = _DbgOleBuildVersion@0@8491 OleConvertIStorageToOLESTREAM = _DbgOleConvertIStorageToOLESTREAM@8@8592 OleConvertIStorageToOLESTREAMEx = _DbgOleConvertIStorageToOLESTREAMEx@28@8693 OleConvertOLESTREAMToIStorage = _DbgOleConvertOLESTREAMToIStorage@12@8794 OleConvertOLESTREAMToIStorageEx = _DbgOleConvertOLESTREAMToIStorageEx@28@8895 OleCreate = _DbgOleCreate@28@8996 OleCreateDefaultHandler = _DbgOleCreateDefaultHandler@16@9097 OleCreateEmbeddingHelper = _DbgOleCreateEmbeddingHelper@24@9198 OleCreateFromData = _DbgOleCreateFromData@28@9299 OleCreateFromFile = _DbgOleCreateFromFile@32@93100 OleCreateLink = _DbgOleCreateLink@28@94101 OleCreateLinkFromData = _DbgOleCreateLinkFromData@28@95102 OleCreateLinkToFile = _DbgOleCreateLinkToFile@28@96103 OleCreateMenuDescriptor = _DbgOleCreateMenuDescriptor@8@97104 OleCreateStaticFromData = _DbgOleCreateStaticFromData@28@98105 OleDestroyMenuDescriptor = _DbgOleDestroyMenuDescriptor@4@99106 OleDoAutoConvert = _DbgOleDoAutoConvert@8@100107 OleDraw = _DbgOleDraw@16@101108 OleDuplicateData = _DbgOleDuplicateData@12@102109 OleFlushClipboard = _DbgOleFlushClipboard@0@103110 OleGetAutoConvert = _DbgOleGetAutoConvert@8@104111 OleGetClipboard = _DbgOleGetClipboard@4@105112 OleGetIconOfClass = _DbgOleGetIconOfClass@12@106113 OleGetIconOfFile = _DbgOleGetIconOfFile@8@107114 OleInitialize = _DbgOleInitialize@4@108115 OleInitializeWOW = _DbgOleInitializeWOW@0@109116 OleIsCurrentClipboard = _DbgOleIsCurrentClipboard@4@110117 OleIsRunning = _DbgOleIsRunning@4@111118 OleLoad = _DbgOleLoad@16@112119 OleLoadFromStream = _DbgOleLoadFromStream@12@113120 OleLockRunning = _DbgOleLockRunning@12@114121 OleMetafilePictFromIconAndLabel = _DbgOleMetafilePictFromIconAndLabel@16@115122 OleNoteObjectVisible = _DbgOleNoteObjectVisible@8@116123 OleQueryCreateFromData = _DbgOleQueryCreateFromData@4@117124 OleQueryLinkFromData = _DbgOleQueryLinkFromData@4@118125 OleRegEnumFormatEtc = _DbgOleRegEnumFormatEtc@12@119126 OleRegEnumVerbs = _DbgOleRegEnumVerbs@8@120127 OleRegGetMiscStatus = _DbgOleRegGetMiscStatus@12@121128 OleRegGetUserType = _DbgOleRegGetUserType@12@122129 OleRun = _DbgOleRun@4@123130 OleSave = _DbgOleSave@12@124131 OleSaveToStream = _DbgOleSaveToStream@8@125132 OleSetAutoConvert = _DbgOleSetAutoConvert@8@126133 OleSetClipboard = _DbgOleSetClipboard@4@127134 OleSetContainedObject = _DbgOleSetContainedObject@8@128135 OleSetMenuDescriptor = _DbgOleSetMenuDescriptor@20@129136 OleTranslateAccelerator = _DbgOleTranslateAccelerator@12@130137 OleUninitialize = _DbgOleUninitialize@0@131138 OpenOrCreateStream = _DbgOpenOrCreateStream@0@132139 ProgIDFromCLSID = _DbgProgIDFromCLSID@8@133140 ReadClassStg = _DbgReadClassStg@8@134141 ReadClassStm = _DbgReadClassStm@8@135142 ReadFmtUserTypeStg = _DbgReadFmtUserTypeStg@12@136143 ReadOleStg = _DbgReadOleStg@0@137144 ReadStringStream = _DbgReadStringStream@0@138145 RegisterDragDrop = _DbgRegisterDragDrop@8@139146 ReleaseStgMedium = _DbgReleaseStgMedium@4@140147 RevokeDragDrop = _DbgRevokeDragDrop@4@141148 SetConvertStg = _DbgSetConvertStg@8@142149 SetDocumentBitStg = _DbgSetDocumentBitStg@0@143150 StgCreateDocfile = _DbgStgCreateDocfile@16@144151 StgCreateDocfileOnILockBytes = _DbgStgCreateDocfileOnILockBytes@16@145152 StgIsStorageFile = _DbgStgIsStorageFile@4@146153 StgIsStorageILockBytes = _DbgStgIsStorageILockBytes@4@147154 StgOpenStorage = _DbgStgOpenStorage@24@148155 StgOpenStorageOnILockBytes = _DbgStgOpenStorageOnILockBytes@24@149156 StgSetTimes = _DbgStgSetTimes@16@150157 StringFromCLSID = _DbgStringFromCLSID@8@151158 StringFromGUID2 = _DbgStringFromGUID2@12@152159 StringFromIID = _DbgStringFromCLSID@8@153160 UtConvertDvtd16toDvtd32 = _DbgUtConvertDvtd16toDvtd32@0@154161 UtConvertDvtd32toDvtd16 = _DbgUtConvertDvtd32toDvtd16@0@155162 UtGetDvtd16Info = _DbgUtGetDvtd16Info@0@156163 UtGetDvtd32Info = _DbgUtGetDvtd32Info@0@157164 WriteClassStg = _DbgWriteClassStg@8@158165 WriteClassStm = _DbgWriteClassStm@8@159166 WriteFmtUserTypeStg = _DbgWriteFmtUserTypeStg@12@160167 WriteOleStg = _DbgWriteOleStg@0@161168 WriteStringStream = _DbgWriteStringStream@0@162169 170 CoInitializeEx = _DbgCoInitializeEx@8@163171 CoInitializeSecurity = _DbgCoInitializeSecurity@36@164172 CoCreateInstanceEx = _DbgCoCreateInstanceEx@24@165173 PropVariantClear = _DbgPropVariantClear@4@1667 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 174 174 ;167 stub CoCopyProxy # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED 175 175 ;168 stub CoGetCallContext # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED … … 178 178 ;171 stub CoRegisterPSClsid # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED 179 179 ;172 stub CoReleaseServerProcess # stdcall () return 0,ERR_NOTIMPLEMENTED 180 CoResumeClassObjects = _DbgCoResumeClassObjects@0@173180 CoResumeClassObjects = "_DbgCoResumeClassObjects@0" @173 181 181 ;174 stub CoRevertToSelf # stdcall () return 0,ERR_NOTIMPLEMENTED 182 182 ;175 stub CoSetProxyBlanket # stdcall (ptr long long wstr long long ptr long) return 0,ERR_NOTIMPLEMENTED … … 197 197 ;190 stub CoRegisterSurrogate 198 198 ;191 stub CoSwitchCallContext 199 CreateErrorInfo = _DbgCreateErrorInfo@4@192199 CreateErrorInfo = "_DbgCreateErrorInfo@4" @192 200 200 ;193 stub CreateObjrefMoniker 201 DllRegisterServer = _DbgOLE32_DllRegisterServer@0@194202 FreePropVariantArray = _DbgFreePropVariantArray@8@195203 GetErrorInfo = _DbgGetErrorInfo@8@196204 205 PropVariantCopy = _DbgPropVariantCopy@8@246206 207 SetErrorInfo = _DbgSetErrorInfo@8@255208 209 CoImpersonateClient = _DbgCoImpersonateClient@0@997 ; suppress warning210 CoInitializeSecurity = _DbgCoInitializeSecurity@36@998 ; suppress warning211 CoRegisterSurrogate = _DbgCoRegisterSurrogate@4@999 ; suppress warning201 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 212 212 213 213 ; 214 214 ; Helper Functions 215 215 ; 216 WINE_StringFromCLSID = _DbgWINE_StringFromCLSID@8@1000217 CLSIDFromStringA = _DbgCLSIDFromStringA@8@1001218 CLSIDFromString16 = _DbgCLSIDFromString16@8@1002 ; COMPOBJ.19216 WINE_StringFromCLSID = "_DbgWINE_StringFromCLSID@8" @1000 217 CLSIDFromStringA = "_DbgCLSIDFromStringA@8" @1001 218 CLSIDFromString16 = "_DbgCLSIDFromString16@8" @1002 ; COMPOBJ.19 219 219 220 220 ; private functions for drag and drop (used by user32\dragdrop.cpp) 221 OLEDD_AcceptsDragDrop = _OLEDD_AcceptsDragDrop@4@1010222 OLEDD_DropFiles = _OLEDD_DropFiles@4@1011223 OLEDD_DragOver = _OLEDD_DragOver@8@1012224 OLEDD_DragEnter = _OLEDD_DragEnter@12@1013225 OLEDD_DragLeave = _OLEDD_DragLeave@4@1014221 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 180 180 } 181 181 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; 185 185 hres = IStream_Seek(pStm,seekto,SEEK_SET,&newpos); 186 186 if (hres) { -
TabularUnified branches/gcc-kmk/src/ole32/regsvr32.cpp ¶
r8500 r21855 39 39 static HRESULT sign_on(void); 40 40 static HRESULT sign_off(void); 41 static HRESULT report_msg(c har * fmt, ...);42 static HRESULT report_err(HRESULT hr, c har * fmt, ...);43 static HRESULT usage(c har * fmt, ...);41 static HRESULT report_msg(const char * fmt, ...); 42 static HRESULT report_err(HRESULT hr, const char * fmt, ...); 43 static HRESULT usage(const char * fmt, ...); 44 44 static int WIN32API EntryPoint(HINSTANCE hInstance, HINSTANCE hPrevInstance, 45 45 LPSTR lpCmdLine, int nCmdShow); … … 259 259 // report_msg 260 260 // ---------------------------------------------------------------------- 261 static HRESULT report_msg(c har * fmt, ...)261 static HRESULT report_msg(const char * fmt, ...) 262 262 { 263 263 if (!fSilent) … … 279 279 // report_err 280 280 // ---------------------------------------------------------------------- 281 static HRESULT report_err(HRESULT hr, c har * fmt, ...)281 static HRESULT report_err(HRESULT hr, const char * fmt, ...) 282 282 { 283 283 va_list va_ptr; … … 297 297 // usage 298 298 // ---------------------------------------------------------------------- 299 static HRESULT usage(c har * fmt, ...)299 static HRESULT usage(const char * fmt, ...) 300 300 { 301 301 va_list va_ptr; -
TabularUnified branches/gcc-kmk/src/ole32/rpc.c ¶
r9451 r21855 547 547 hres = IStream_Write(pStm,marshalbuffer,bufferlen,&res); 548 548 if (hres) goto out; 549 seekto. s.LowPart = 0;seekto.s.HighPart = 0;549 seekto.DUMMYSTRUCTNAME_DOT LowPart = 0;seekto.DUMMYSTRUCTNAME_DOT HighPart = 0; 550 550 hres = IStream_Seek(pStm,seekto,SEEK_SET,&newpos); 551 551 hres = CoUnmarshalInterface(pStm,&IID_IClassFactory,ppv); -
TabularUnified branches/gcc-kmk/src/ole32/stg_bigblockfile.c ¶
r8620 r21855 233 233 } 234 234 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); 237 237 238 238 This->maplist = NULL; 239 239 240 TRACE("file len %lu\n", This->filesize. s.LowPart);240 TRACE("file len %lu\n", This->filesize.DUMMYSTRUCTNAME_DOT LowPart); 241 241 242 242 return TRUE; … … 270 270 ILockBytes_AddRef(This->pLkbyt); 271 271 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; 274 274 275 275 This->pbytearray = GlobalLock(This->hbytearray); 276 276 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); 278 278 279 279 return TRUE; … … 330 330 */ 331 331 if (This->blocksize * (index + 1) 332 > ROUND_UP(This->filesize. s.LowPart, This->blocksize))332 > ROUND_UP(This->filesize.DUMMYSTRUCTNAME_DOT LowPart, This->blocksize)) 333 333 { 334 334 TRACE("out of range %lu vs %lu\n", This->blocksize * (index + 1), 335 This->filesize. s.LowPart);335 This->filesize.DUMMYSTRUCTNAME_DOT LowPart); 336 336 return NULL; 337 337 } … … 360 360 * make sure that the block physically exists 361 361 */ 362 if ((This->blocksize * (index + 1)) > This->filesize. s.LowPart)362 if ((This->blocksize * (index + 1)) > This->filesize.DUMMYSTRUCTNAME_DOT LowPart) 363 363 { 364 364 ULARGE_INTEGER newSize; 365 365 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); 368 368 369 369 BIGBLOCKFILE_SetSize(This, newSize); … … 401 401 void BIGBLOCKFILE_SetSize(LPBIGBLOCKFILE This, ULARGE_INTEGER newSize) 402 402 { 403 if (This->filesize. s.LowPart == newSize.s.LowPart)403 if (This->filesize.DUMMYSTRUCTNAME_DOT LowPart == newSize.DUMMYSTRUCTNAME_DOT LowPart) 404 404 return; 405 405 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); 407 407 /* 408 408 * unmap all views, must be done before call to SetEndFile … … 433 433 */ 434 434 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); 436 436 WriteFile(This->hfile, buf, 10, NULL, NULL); 437 437 /* … … 442 442 * set the new end of file 443 443 */ 444 SetFilePointer(This->hfile, newSize. s.LowPart, NULL, FILE_BEGIN);444 SetFilePointer(This->hfile, newSize.DUMMYSTRUCTNAME_DOT LowPart, NULL, FILE_BEGIN); 445 445 SetEndOfFile(This->hfile); 446 446 … … 470 470 } 471 471 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; 474 474 475 475 BIGBLOCKFILE_RemapAllMappedPages(This); … … 659 659 DWORD desired_access; 660 660 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; 663 663 else 664 664 numBytesToMap = PAGE_SIZE; … … 819 819 MappedPage *next = list->next; 820 820 821 if (list->page_index * PAGE_SIZE > This->filesize. s.LowPart)821 if (list->page_index * PAGE_SIZE > This->filesize.DUMMYSTRUCTNAME_DOT LowPart) 822 822 { 823 823 TRACE("discarding %lu\n", list->page_index); -
TabularUnified branches/gcc-kmk/src/ole32/stg_stream.c ¶
r9400 r21855 101 101 * Start the stream at the beginning. 102 102 */ 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; 105 105 106 106 /* 107 107 * Initialize the rest of the data. 108 108 */ 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; 111 111 newStream->bigBlockChain = 0; 112 112 newStream->smallBlockChain = 0; … … 289 289 * This code supports only streams that are <32 bits in size. 290 290 */ 291 assert(This->streamSize. s.HighPart == 0);291 assert(This->streamSize.DUMMYSTRUCTNAME_DOT HighPart == 0); 292 292 293 293 if(curProperty.startingBlock == BLOCK_END_OF_CHAIN) 294 294 { 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) ); 296 296 } 297 297 else 298 298 { 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) ) 301 301 { 302 302 This->smallBlockChain = SmallBlockChainStream_Construct( … … 350 350 * to read from the block chain 351 351 */ 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); 353 353 354 354 /* … … 394 394 * Advance the pointer for the number of positions read. 395 395 */ 396 This->currentPosition. s.LowPart += *pcbRead;396 This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart += *pcbRead; 397 397 398 398 if(*pcbRead != cb) … … 464 464 else 465 465 { 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; 468 468 } 469 469 … … 471 471 * Verify if we need to grow the stream 472 472 */ 473 if (newSize. s.LowPart > This->streamSize.s.LowPart)473 if (newSize.DUMMYSTRUCTNAME_DOT LowPart > This->streamSize.DUMMYSTRUCTNAME_DOT LowPart) 474 474 { 475 475 /* grow stream */ … … 504 504 * Advance the position pointer for the number of positions written. 505 505 */ 506 This->currentPosition. s.LowPart += *pcbWritten;506 This->currentPosition.DUMMYSTRUCTNAME_DOT LowPart += *pcbWritten; 507 507 508 508 return S_OK; … … 528 528 529 529 TRACE("(%p, %ld, %ld, %p)\n", 530 iface, dlibMove. s.LowPart, dwOrigin, plibNewPosition);530 iface, dlibMove.DUMMYSTRUCTNAME_DOT LowPart, dwOrigin, plibNewPosition); 531 531 532 532 /* … … 547 547 { 548 548 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; 551 551 break; 552 552 case STREAM_SEEK_CUR: … … 560 560 } 561 561 562 #if defined(__WIN32OS2__) && defined(__IBMC__)562 #ifdef __WIN32OS2__ 563 563 *((LARGE_INTEGER*)plibNewPosition )= RtlpLargeIntegerAdd( (LARGE_INTEGER *)plibNewPosition, &dlibMove ); 564 564 #else … … 591 591 BOOL Success; 592 592 593 TRACE("(%p, %ld)\n", iface, libNewSize. s.LowPart);593 TRACE("(%p, %ld)\n", iface, libNewSize.DUMMYSTRUCTNAME_DOT LowPart); 594 594 595 595 /* 596 596 * As documented. 597 597 */ 598 if (libNewSize. s.HighPart != 0)598 if (libNewSize.DUMMYSTRUCTNAME_DOT HighPart != 0) 599 599 return STG_E_INVALIDFUNCTION; 600 600 … … 605 605 return STG_E_ACCESSDENIED; 606 606 607 if (This->streamSize. s.LowPart == libNewSize.s.LowPart)607 if (This->streamSize.DUMMYSTRUCTNAME_DOT LowPart == libNewSize.DUMMYSTRUCTNAME_DOT LowPart) 608 608 return S_OK; 609 609 … … 613 613 if ((This->smallBlockChain == 0) && (This->bigBlockChain == 0)) 614 614 { 615 if (libNewSize. s.LowPart < LIMIT_TO_USE_SMALL_BLOCK)615 if (libNewSize.DUMMYSTRUCTNAME_DOT LowPart < LIMIT_TO_USE_SMALL_BLOCK) 616 616 { 617 617 This->smallBlockChain = SmallBlockChainStream_Construct( … … 638 638 */ 639 639 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) 643 643 { 644 644 /* … … 667 667 &curProperty); 668 668 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; 671 671 672 672 if (Success) … … 703 703 704 704 TRACE("(%p, %p, %ld, %p, %p)\n", 705 iface, pstm, cb. s.LowPart, pcbRead, pcbWritten);705 iface, pstm, cb.DUMMYSTRUCTNAME_DOT LowPart, pcbRead, pcbWritten); 706 706 707 707 /* … … 711 711 return STG_E_INVALIDPOINTER; 712 712 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; 715 715 716 716 /* … … 719 719 * implementation will do the job 720 720 */ 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 ) 724 724 copySize = 128; 725 725 else 726 copySize = cb. s.LowPart;726 copySize = cb.DUMMYSTRUCTNAME_DOT LowPart; 727 727 728 728 IStream_Read(iface, tmpBuffer, copySize, &bytesRead); 729 729 730 totalBytesRead. s.LowPart += bytesRead;730 totalBytesRead.DUMMYSTRUCTNAME_DOT LowPart += bytesRead; 731 731 732 732 IStream_Write(pstm, tmpBuffer, bytesRead, &bytesWritten); 733 733 734 totalBytesWritten. s.LowPart += bytesWritten;734 totalBytesWritten.DUMMYSTRUCTNAME_DOT LowPart += bytesWritten; 735 735 736 736 /* … … 744 744 745 745 if (bytesRead!=copySize) 746 cb. s.LowPart = 0;746 cb.DUMMYSTRUCTNAME_DOT LowPart = 0; 747 747 else 748 cb. s.LowPart -= bytesRead;748 cb.DUMMYSTRUCTNAME_DOT LowPart -= bytesRead; 749 749 } 750 750 … … 754 754 if (pcbRead) 755 755 { 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; 758 758 } 759 759 760 760 if (pcbWritten) 761 761 { 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; 764 764 } 765 765 return hr; -
TabularUnified branches/gcc-kmk/src/ole32/storage32.c ¶
r21494 r21855 681 681 if (res == S_OK) 682 682 { 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); 684 684 } 685 685 TRACE("<-- %08lx\n", res); … … 765 765 renamedProperty.propertyType = currentProperty.propertyType; 766 766 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; 769 769 770 770 renamedProperty.previousProperty = PROPERTY_NULL; … … 939 939 newStreamProperty.propertyType = PROPTYPE_STREAM; 940 940 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; 943 943 944 944 newStreamProperty.previousProperty = PROPERTY_NULL; … … 1124 1124 newProperty.propertyType = PROPTYPE_STORAGE; 1125 1125 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; 1128 1128 1129 1129 newProperty.previousProperty = PROPERTY_NULL; … … 1246 1246 * initialize the size used by the property stream 1247 1247 */ 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; 1250 1250 1251 1251 /* … … 1875 1875 ULARGE_INTEGER size; 1876 1876 1877 size. s.HighPart = 0;1878 size. s.LowPart = 0;1877 size.DUMMYSTRUCTNAME_DOT HighPart = 0; 1878 size.DUMMYSTRUCTNAME_DOT LowPart = 0; 1879 1879 1880 1880 hr = StorageBaseImpl_OpenStream( … … 2283 2283 * Add one block for the big block depot and one block for the properties 2284 2284 */ 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; 2287 2287 BIGBLOCKFILE_SetSize(This->bigBlockFile, size); 2288 2288 … … 2351 2351 rootProp.dirProperty = PROPERTY_NULL; 2352 2352 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; 2355 2355 2356 2356 StorageImpl_WriteProperty(This, 0, &rootProp); … … 3128 3128 ULONG bytesRead; 3129 3129 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; 3132 3132 3133 3133 readSuccessful = BlockChainStream_ReadAt( … … 3206 3206 currentProperty, 3207 3207 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; 3211 3211 } 3212 3212 … … 3227 3227 ULONG bytesWritten; 3228 3228 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; 3231 3231 3232 3232 memset(currentProperty, 0, PROPSET_BLOCK_SIZE); … … 3292 3292 currentProperty, 3293 3293 OFFSET_PS_SIZE, 3294 buffer->size. s.LowPart);3294 buffer->size.DUMMYSTRUCTNAME_DOT LowPart); 3295 3295 3296 3296 writeSuccessful = BlockChainStream_WriteAt(This->rootBlockChain, … … 3404 3404 * by small block size increments. 3405 3405 */ 3406 offset. s.LowPart = 0;3407 offset. s.HighPart = 0;3406 offset.DUMMYSTRUCTNAME_DOT LowPart = 0; 3407 offset.DUMMYSTRUCTNAME_DOT HighPart = 0; 3408 3408 cbTotalRead = 0; 3409 3409 cbTotalWritten = 0; … … 3426 3426 cbTotalWritten += cbWritten; 3427 3427 3428 offset. s.LowPart += This->smallBlockSize;3428 offset.DUMMYSTRUCTNAME_DOT LowPart += This->smallBlockSize; 3429 3429 3430 3430 } while (successRead && successWrite); … … 3437 3437 */ 3438 3438 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; 3441 3441 SmallBlockChainStream_SetSize(*ppsbChain, size); 3442 3442 SmallBlockChainStream_Destroy(*ppsbChain); … … 4265 4265 ULONG* bytesRead) 4266 4266 { 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; 4269 4269 ULONG bytesToReadInBuffer; 4270 4270 ULONG blockIndex; … … 4353 4353 ULONG* bytesWritten) 4354 4354 { 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; 4357 4357 ULONG bytesToWrite; 4358 4358 ULONG blockIndex; … … 4449 4449 * Figure out how many blocks are needed to contain the new size 4450 4450 */ 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) 4454 4454 numBlocks++; 4455 4455 … … 4549 4549 * Figure out how many blocks are needed to contain this stream 4550 4550 */ 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) 4554 4554 newNumBlocks++; 4555 4555 … … 4623 4623 ULARGE_INTEGER size = BlockChainStream_GetSize(This); 4624 4624 4625 if (newSize. s.LowPart == size.s.LowPart)4625 if (newSize.DUMMYSTRUCTNAME_DOT LowPart == size.DUMMYSTRUCTNAME_DOT LowPart) 4626 4626 return TRUE; 4627 4627 4628 if (newSize. s.LowPart < size.s.LowPart)4628 if (newSize.DUMMYSTRUCTNAME_DOT LowPart < size.DUMMYSTRUCTNAME_DOT LowPart) 4629 4629 { 4630 4630 BlockChainStream_Shrink(This, newSize); … … 4635 4635 BIGBLOCKFILE_GetSize(This->parentStorage->bigBlockFile); 4636 4636 4637 ULONG diff = newSize. s.LowPart - size.s.LowPart;4637 ULONG diff = newSize.DUMMYSTRUCTNAME_DOT LowPart - size.DUMMYSTRUCTNAME_DOT LowPart; 4638 4638 4639 4639 /* … … 4644 4644 (diff % This->parentStorage->bigBlockSize) ); 4645 4645 4646 fileSize. s.LowPart += diff;4646 fileSize.DUMMYSTRUCTNAME_DOT LowPart += diff; 4647 4647 BIGBLOCKFILE_SetSize(This->parentStorage->bigBlockFile, fileSize); 4648 4648 … … 4684 4684 */ 4685 4685 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 = 4689 4689 BlockChainStream_GetCount(This) * 4690 4690 This->parentStorage->bigBlockSize; … … 4767 4767 *nextBlockInChain = BLOCK_END_OF_CHAIN; 4768 4768 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); 4771 4771 4772 4772 /* … … 4806 4806 ULONG bytesWritten; 4807 4807 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); 4810 4810 4811 4811 StorageUtl_WriteDWord(&buffer, 0, nextBlock); … … 4852 4852 ULONG smallBlocksPerBigBlock; 4853 4853 4854 offsetOfBlockInDepot. s.HighPart = 0;4854 offsetOfBlockInDepot.DUMMYSTRUCTNAME_DOT HighPart = 0; 4855 4855 4856 4856 /* … … 4859 4859 while (nextBlockIndex != BLOCK_UNUSED) 4860 4860 { 4861 offsetOfBlockInDepot. s.LowPart = blockIndex * sizeof(ULONG);4861 offsetOfBlockInDepot.DUMMYSTRUCTNAME_DOT LowPart = blockIndex * sizeof(ULONG); 4862 4862 4863 4863 success = BlockChainStream_ReadAt( … … 4946 4946 4947 4947 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; 4950 4950 4951 4951 StorageImpl_WriteProperty( … … 4973 4973 &rootProp); 4974 4974 4975 if (rootProp.size. s.LowPart <4975 if (rootProp.size.DUMMYSTRUCTNAME_DOT LowPart < 4976 4976 (blocksRequired * This->parentStorage->bigBlockSize)) 4977 4977 { 4978 rootProp.size. s.LowPart += This->parentStorage->bigBlockSize;4978 rootProp.size.DUMMYSTRUCTNAME_DOT LowPart += This->parentStorage->bigBlockSize; 4979 4979 4980 4980 BlockChainStream_SetSize( … … 5008 5008 ULARGE_INTEGER offsetInBigBlockFile; 5009 5009 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; 5013 5013 ULONG bytesToReadInBuffer; 5014 5014 ULONG blockIndex; … … 5019 5019 * This should never happen on a small block file. 5020 5020 */ 5021 assert(offset. s.HighPart==0);5021 assert(offset.DUMMYSTRUCTNAME_DOT HighPart==0); 5022 5022 5023 5023 /* … … 5051 5051 * Calculate the offset of the small block in the small block file. 5052 5052 */ 5053 offsetInBigBlockFile. s.HighPart = 0;5054 offsetInBigBlockFile. s.LowPart =5053 offsetInBigBlockFile.DUMMYSTRUCTNAME_DOT HighPart = 0; 5054 offsetInBigBlockFile.DUMMYSTRUCTNAME_DOT LowPart = 5055 5055 blockIndex * This->parentStorage->smallBlockSize; 5056 5056 5057 offsetInBigBlockFile. s.LowPart += offsetInBlock;5057 offsetInBigBlockFile.DUMMYSTRUCTNAME_DOT LowPart += offsetInBlock; 5058 5058 5059 5059 /* … … 5098 5098 ULARGE_INTEGER offsetInBigBlockFile; 5099 5099 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; 5103 5103 ULONG bytesToWriteInBuffer; 5104 5104 ULONG blockIndex; … … 5109 5109 * This should never happen on a small block file. 5110 5110 */ 5111 assert(offset. s.HighPart==0);5111 assert(offset.DUMMYSTRUCTNAME_DOT HighPart==0); 5112 5112 5113 5113 /* … … 5142 5142 * Calculate the offset of the small block in the small block file. 5143 5143 */ 5144 offsetInBigBlockFile. s.HighPart = 0;5145 offsetInBigBlockFile. s.LowPart =5144 offsetInBigBlockFile.DUMMYSTRUCTNAME_DOT HighPart = 0; 5145 offsetInBigBlockFile.DUMMYSTRUCTNAME_DOT LowPart = 5146 5146 blockIndex * This->parentStorage->smallBlockSize; 5147 5147 5148 offsetInBigBlockFile. s.LowPart += offsetInBlock;5148 offsetInBigBlockFile.DUMMYSTRUCTNAME_DOT LowPart += offsetInBlock; 5149 5149 5150 5150 /* … … 5187 5187 ULONG count = 0; 5188 5188 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) 5192 5192 numBlocks++; 5193 5193 … … 5300 5300 * Figure out how many blocks are needed to contain this stream 5301 5301 */ 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) 5305 5305 newNumBlocks++; 5306 5306 … … 5376 5376 ULARGE_INTEGER size = SmallBlockChainStream_GetSize(This); 5377 5377 5378 if (newSize. s.LowPart == size.s.LowPart)5378 if (newSize.DUMMYSTRUCTNAME_DOT LowPart == size.DUMMYSTRUCTNAME_DOT LowPart) 5379 5379 return TRUE; 5380 5380 5381 if (newSize. s.LowPart < size.s.LowPart)5381 if (newSize.DUMMYSTRUCTNAME_DOT LowPart < size.DUMMYSTRUCTNAME_DOT LowPart) 5382 5382 { 5383 5383 SmallBlockChainStream_Shrink(This, newSize); … … 5822 5822 ULARGE_INTEGER offset; 5823 5823 5824 offset. s.HighPart = 0;5825 offset. s.LowPart = 0;5824 offset.DUMMYSTRUCTNAME_DOT HighPart = 0; 5825 offset.DUMMYSTRUCTNAME_DOT LowPart = 0; 5826 5826 5827 5827 ILockBytes_ReadAt(plkbyt, offset, sig, sizeof(sig), NULL); … … 6810 6810 6811 6811 /*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; 6814 6814 6815 6815 IStream_Seek(pStream, iSeekPos, STREAM_SEEK_SET, NULL); 6816 6816 IStream_Read(pStream, &CompObj.dwCLSIDNameLength, sizeof(CompObj.dwCLSIDNameLength), NULL); 6817 iSeekPos. s.LowPart = CompObj.dwCLSIDNameLength;6817 iSeekPos.DUMMYSTRUCTNAME_DOT LowPart = CompObj.dwCLSIDNameLength; 6818 6818 IStream_Seek(pStream, iSeekPos, STREAM_SEEK_CUR , NULL); 6819 6819 IStream_Read(pStream, &CompObj.dwOleTypeNameLength, sizeof(CompObj.dwOleTypeNameLength), NULL); 6820 iSeekPos. s.LowPart = CompObj.dwOleTypeNameLength;6820 iSeekPos.DUMMYSTRUCTNAME_DOT LowPart = CompObj.dwOleTypeNameLength; 6821 6821 IStream_Seek(pStream, iSeekPos, STREAM_SEEK_CUR , NULL); 6822 6822 … … 6957 6957 strcpy(pOleStreamData[1].strOleTypeName, strMetafilePictName); 6958 6958 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); 6961 6961 6962 6962 /* Get Presentation Data */
Note:
See TracChangeset
for help on using the changeset viewer.