Changeset 2191 for trunk/include


Ignore:
Timestamp:
Dec 23, 1999, 12:27:14 AM (26 years ago)
Author:
davidr
Message:

Added FUNCFLAGS enum

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/wine/obj_oleaut.h

    r641 r2191  
    1 /* $Id: obj_oleaut.h,v 1.5 1999-08-22 22:52:08 sandervl Exp $ */
     1/* $Id: obj_oleaut.h,v 1.6 1999-12-22 23:27:14 davidr Exp $ */
    22/*
    33 * Defines the COM interfaces and APIs related to OLE automation support.
     
    412412        ITypeComp *lptcomp;
    413413} BINDPTR, *LPBINDPTR;
     414
     415typedef enum tagFUNCFLAGS
     416{
     417        FUNCFLAG_FRESTRICTED    = 0x1,
     418        FUNCFLAG_FSOURCE        = 0x2,
     419        FUNCFLAG_FBINDABLE      = 0x4,
     420        FUNCFLAG_FREQUESTEDIT   = 0x8,
     421        FUNCFLAG_FDISPLAYBIND   = 0x10,
     422        FUNCFLAG_FDEFAULTBIND   = 0x20,
     423        FUNCFLAG_FHIDDEN        = 0x40,
     424        FUNCFLAG_FUSESGETLASTERROR      = 0x80,
     425        FUNCFLAG_FDEFAULTCOLLELEM       = 0x100,
     426        FUNCFLAG_FUIDEFAULT     = 0x200,
     427        FUNCFLAG_FNONBROWSABLE  = 0x400,
     428        FUNCFLAG_FREPLACEABLE   = 0x800,
     429        FUNCFLAG_FIMMEDIATEBIND = 0x1000
     430}   FUNCFLAGS;
     431
    414432
    415433typedef enum tagVARFLAGS
Note: See TracChangeset for help on using the changeset viewer.