Changeset 8441 for trunk/src/ole32/ole2stubs.c
- Timestamp:
- May 16, 2002, 6:43:06 PM (24 years ago)
- File:
-
- 1 edited
-
trunk/src/ole32/ole2stubs.c (modified) (16 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ole32/ole2stubs.c
r7926 r8441 4 4 * Copyright (C) 1999 Corel Corporation 5 5 * Move these functions to dlls/ole32/ole2impl.c when you implement them. 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Lesser General Public 9 * License as published by the Free Software Foundation; either 10 * version 2.1 of the License, or (at your option) any later version. 11 * 12 * This library is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * Lesser General Public License for more details. 16 * 17 * You should have received a copy of the GNU Lesser General Public 18 * License along with this library; if not, write to the Free Software 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 6 20 */ 7 21 … … 10 24 #include "winuser.h" 11 25 #include "ole2.h" 12 #include " debugtools.h"13 14 DEFAULT_DEBUG_CHANNEL(ole);26 #include "wine/debug.h" 27 28 WINE_DEFAULT_DEBUG_CHANNEL(ole); 15 29 16 30 /****************************************************************************** … … 22 36 { 23 37 FIXME("(%p,%p,%li,%p,%p,%p,%p), stub!\n",lpszFileName, riid, renderopt, lpFormatEtc, pClientSite, pStg, ppvObj); 24 return S_OK;38 return E_NOTIMPL; 25 39 } 26 40 … … 33 47 { 34 48 FIXME("(%x,%x,%x), stub!\n", hSrc, cfFormat, uiFlags); 35 return S_OK;49 return E_NOTIMPL; 36 50 } 37 51 … … 44 58 { 45 59 FIXME("(%p,%x,%s) stub!\n",pstg,cf,debugstr_w(lpszUserType)); 46 return S_OK;60 return E_NOTIMPL; 47 61 } 48 62 … … 63 77 { 64 78 FIXME("(%p,%x), stub!\n", pStg, fConvert); 65 return S_OK;79 return E_NOTIMPL; 66 80 } 67 81 … … 120 134 { 121 135 FIXME("(not shown), stub!\n"); 122 return S_OK;136 return E_NOTIMPL; 123 137 } 124 138 … … 130 144 { 131 145 FIXME("(not shown), stub!\n"); 132 return S_OK;146 return E_NOTIMPL; 133 147 } 134 148 … … 140 154 { 141 155 FIXME("(%p,%p,%x), stub!\n", rclsid, lpszLabel, fUseTypeAsLabel); 142 return S_OK;156 return (HGLOBAL)NULL; 143 157 } 144 158 … … 149 163 { 150 164 FIXME("(%p,%p,%p), stub!\n", pstg, pcf, lplpszUserType); 151 return S_OK;165 return E_NOTIMPL; 152 166 } 153 167 … … 160 174 { 161 175 FIXME("(not shown), stub!\n"); 162 return S_OK;176 return E_NOTIMPL; 163 177 } 164 178 … … 173 187 { 174 188 FIXME("(not shown), stub!\n"); 175 return S_OK;189 return E_NOTIMPL; 176 190 } 177 191 … … 204 218 FIXME("(%p, %ld, %p), stub!\n", clsid, dwDirection, ppenumFormatetc); 205 219 206 return S_OK;220 return E_NOTIMPL; 207 221 } 208 222 … … 216 230 *(LPWORD)pvar = 0; 217 231 /* sets at least the vt field to VT_EMPTY */ 218 return S_OK;232 return E_NOTIMPL; 219 233 } 220 234 … … 227 241 FIXME("(%p, %p): stub:\n", pvarDest, pvarSrc); 228 242 229 return S_OK;243 return E_NOTIMPL; 230 244 } 231 245 … … 238 252 FIXME("(%lu, %p): stub:\n", cVariants, rgvars); 239 253 240 return S_OK;254 return E_NOTIMPL; 241 255 } 242 256
Note:
See TracChangeset
for help on using the changeset viewer.
