- Timestamp:
- Nov 14, 1999, 2:27:36 AM (26 years ago)
- Location:
- trunk/src/oleaut32
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/oleaut32/makefile
r1661 r1729 1 #/* $Id: makefile,v 1. 5 1999-11-09 14:16:43 sandervlExp $ */1 #/* $Id: makefile,v 1.6 1999-11-14 01:26:36 davidr Exp $ */ 2 2 # 3 3 # PD-Win32 API … … 25 25 typelib.obj variant.obj \ 26 26 ole2disp.obj parsedt.obj \ 27 ipicture.obj \ 27 28 safearray.obj stubs.obj 28 29 … … 55 56 typelib.obj: typelib.cpp oleaut32.h 56 57 olefont.obj: olefont.cpp oleaut32.h 58 ipicture.obj: ipicture.cpp oleaut32.h 57 59 parsedt.obj: parsedt.cpp parsedt.h 58 60 safearray.obj: safearray.cpp oleaut32.h … … 66 68 67 69 70 71 -
trunk/src/oleaut32/oleaut32.h
r879 r1729 1 /* $Id: oleaut32.h,v 1. 5 1999-09-08 15:23:23davidr Exp $ */1 /* $Id: oleaut32.h,v 1.6 1999-11-14 01:26:36 davidr Exp $ */ 2 2 /* 3 3 * Win32 OLE stubs for OS/2 … … 30 30 #include <winbase.h> 31 31 #include "oleauto.h" 32 //#include <uconv.h>33 32 #undef CALLCONV 34 33 … … 38 37 #include <winreg.h> 39 38 39 #include "objbase.h" // Common obj include 40 #include "wine/obj_inplace.h" 41 #include "wine/obj_oleobj.h" 42 #include "wine/obj_surrogate.h" 43 #include "wine/obj_oleview.h" 44 #include "wine/obj_cache.h" 40 45 41 #include "wine/obj_base.h" 42 #include "wine/obj_oleview.h" 43 #include "wine/obj_misc.h" 44 #include "wine/obj_inplace.h" 45 #include "wine/obj_dataobject.h" 46 #include "wine/obj_oleobj.h" 47 #include "wine/obj_marshal.h" 48 #include "wine/obj_moniker.h" 49 #include "wine/obj_clientserver.h" 50 #include "wine/obj_dragdrop.h" 51 #include "wine/obj_property.h" 52 #include "wine/obj_olefont.h" 53 #include "wine/obj_oleundo.h" 46 #include "wine/obj_property.h" // needed for oleundo 47 #include "wine/obj_olefont.h" // needed for oleundo 48 #include "wine/obj_oleundo.h" // for OLE_COLOR of all things :-) 49 50 #include "wine/obj_picture.h" 51 54 52 #include <heapstring.h> 55 53 -
trunk/src/oleaut32/stubs.cpp
r879 r1729 1 /* $Id: stubs.cpp,v 1. 1 1999-09-08 15:23:23davidr Exp $ */1 /* $Id: stubs.cpp,v 1.2 1999-11-14 01:26:36 davidr Exp $ */ 2 2 /* 3 3 * Win32 COM/OLE stubs for OS/2 … … 993 993 } 994 994 995 //*****************************************************************************996 //*****************************************************************************997 HRESULT WIN32API OleLoadPicture(LPSTREAM lpstream, LONG lSize, BOOL fRunmode,998 REFIID riid, LPVOID * lplpvObj)999 {1000 dprintf(("OLEAUT32: OleLoadPicture - stub"));1001 return S_OK;1002 }1003 1004 //*****************************************************************************1005 //*****************************************************************************1006 1007 #define PICTYPE_UNINITIALIZED (-1)1008 #define PICTYPE_NONE 01009 #define PICTYPE_BITMAP 11010 #define PICTYPE_METAFILE 21011 #define PICTYPE_ICON 31012 #define PICTYPE_ENHMETAFILE 41013 1014 typedef struct tagPICTDESC1015 {1016 UINT cbSizeofstruct;1017 UINT picType;1018 union1019 {1020 struct1021 {1022 HBITMAP hbitmap; // Bitmap1023 HPALETTE hpal; // Accompanying palette1024 } bmp;1025 1026 struct1027 {1028 HMETAFILE hmeta; // Metafile1029 int xExt;1030 int yExt; // Extent1031 } wmf;1032 1033 struct1034 {1035 HICON hicon; // Icon1036 } icon;1037 1038 struct1039 {1040 HENHMETAFILE hemf; // Enhanced Metafile1041 } emf;1042 } u;1043 1044 } PICTDESC, * LPPICTDESC;1045 1046 HRESULT WIN32API OleCreatePictureIndirect(LPPICTDESC lpPictDesc, REFIID riid,1047 BOOL fOwn, LPVOID * lplpvObj)1048 {1049 dprintf(("OLEAUT32: OleCreatePictureIndirect - stub"));1050 return S_OK;1051 }1052 1053 //*****************************************************************************1054 //*****************************************************************************1055 HRESULT WIN32API OleLoadPictureFile(VARIANT varFileName, LPDISPATCH* lplpdispPicture)1056 {1057 dprintf(("OLEAUT32: OleLoadPictureFile - stub"));1058 return S_OK;1059 }1060 1061 //*****************************************************************************1062 //*****************************************************************************1063 HRESULT WIN32API OleSavePictureFile(LPDISPATCH lpdispPicture,1064 BSTR bstrFileName)1065 {1066 dprintf(("OLEAUT32: OleSavePictureFile - stub"));1067 return S_OK;1068 }1069 1070 //*****************************************************************************1071 //*****************************************************************************1072 HRESULT WIN32API OleLoadPicturePath1073 (LPOLESTR szURLorPath,1074 LPUNKNOWN punkCaller,1075 DWORD dwReserved,1076 OLE_COLOR clrReserved,1077 REFIID riid,1078 LPVOID * ppvRet )1079 {1080 dprintf(("OLEAUT32: OleLoadPicturePath - stub"));1081 return S_OK;1082 }1083
Note:
See TracChangeset
for help on using the changeset viewer.