Ignore:
Timestamp:
Nov 12, 1999, 1:00:14 PM (26 years ago)
Author:
davidr
Message:

Minor Wine change; no functional difference

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ole32/bindctx.cpp

    r1033 r1711  
    1 /* $Id: bindctx.cpp,v 1.1 1999-09-24 21:49:42 davidr Exp $ */
     1/* $Id: bindctx.cpp,v 1.2 1999-11-12 12:00:14 davidr Exp $ */
    22/*
    33 * BindCtx implementation
     
    3535typedef struct BindCtxImpl{
    3636
    37     ICOM_VTABLE(IBindCtx)*  lpvtbl; /* VTable relative to the IBindCtx interface.*/
     37    ICOM_VFIELD(IBindCtx); /* VTable relative to the IBindCtx interface.*/
    3838                                     
    3939    ULONG ref; /* reference counter for this object */
     
    165165
    166166    /* Initialize the virtual function table.*/
    167     This->lpvtbl       = &VT_BindCtxImpl;
     167    ICOM_VTBL(This)    = &VT_BindCtxImpl;
    168168    This->ref          = 0;
    169169
Note: See TracChangeset for help on using the changeset viewer.