Ignore:
Timestamp:
May 16, 2002, 6:43:06 PM (24 years ago)
Author:
sandervl
Message:

Wine resync

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ole32/ole2stubs.c

    r7926 r8441  
    44 * Copyright (C) 1999 Corel Corporation
    55 * 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
    620 */
    721
     
    1024#include "winuser.h"
    1125#include "ole2.h"
    12 #include "debugtools.h"
    13 
    14 DEFAULT_DEBUG_CHANNEL(ole);
     26#include "wine/debug.h"
     27
     28WINE_DEFAULT_DEBUG_CHANNEL(ole);
    1529
    1630/******************************************************************************
     
    2236{
    2337    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;
    2539}
    2640
     
    3347{
    3448    FIXME("(%x,%x,%x), stub!\n", hSrc, cfFormat, uiFlags);
    35     return S_OK;
     49    return E_NOTIMPL;
    3650}
    3751
     
    4458{
    4559    FIXME("(%p,%x,%s) stub!\n",pstg,cf,debugstr_w(lpszUserType));
    46     return S_OK;
     60    return E_NOTIMPL;
    4761}
    4862
     
    6377{
    6478  FIXME("(%p,%x), stub!\n", pStg, fConvert);
    65   return S_OK;
     79  return E_NOTIMPL;
    6680}
    6781
     
    120134{
    121135  FIXME("(not shown), stub!\n");
    122   return S_OK;
     136  return E_NOTIMPL;
    123137}
    124138
     
    130144{
    131145  FIXME("(not shown), stub!\n");
    132   return S_OK;
     146  return E_NOTIMPL;
    133147}
    134148
     
    140154{
    141155  FIXME("(%p,%p,%x), stub!\n", rclsid, lpszLabel, fUseTypeAsLabel);
    142   return S_OK;
     156  return (HGLOBAL)NULL;
    143157}
    144158
     
    149163{
    150164  FIXME("(%p,%p,%p), stub!\n", pstg, pcf, lplpszUserType);
    151   return S_OK;
     165  return E_NOTIMPL;
    152166}
    153167
     
    160174{
    161175  FIXME("(not shown), stub!\n");
    162   return S_OK;
     176  return E_NOTIMPL;
    163177}
    164178
     
    173187{
    174188  FIXME("(not shown), stub!\n");
    175   return S_OK;
     189  return E_NOTIMPL;
    176190}
    177191
     
    204218    FIXME("(%p, %ld, %p), stub!\n", clsid, dwDirection, ppenumFormatetc);
    205219
    206     return S_OK;
     220    return E_NOTIMPL;
    207221}
    208222
     
    216230        *(LPWORD)pvar = 0;
    217231        /* sets at least the vt field to VT_EMPTY */
    218         return S_OK;
     232        return E_NOTIMPL;
    219233}
    220234
     
    227241        FIXME("(%p, %p): stub:\n", pvarDest, pvarSrc);
    228242
    229         return S_OK;
     243        return E_NOTIMPL;
    230244}
    231245
     
    238252        FIXME("(%lu, %p): stub:\n", cVariants, rgvars);
    239253
    240         return S_OK;
     254        return E_NOTIMPL;
    241255}
    242256
Note: See TracChangeset for help on using the changeset viewer.