This topic has not yet been rated - Rate this topic

BINDPTR structure

Applies to: desktop apps only

TBD

Syntax

typedef struct tagBINDPTR {
  FUNCDESC  *lpfuncdesc;
  VARDESC   *lpvardesc;
  ITypeComp *lptcomp;
} BINDPTR, *LPBINDPTR;

Members

lpfuncdesc

TBD

lpvardesc

TBD

lptcomp

TBD

Requirements

Header

OaIdl.h

 

 

Send comments about this topic to Microsoft

Build date: 3/6/2012

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
This is not a struct
Accoriding to OAIdl.h, this is not a structure but a union:

typedef union tagBINDPTR
    {
    FUNCDESC *lpfuncdesc;
    VARDESC *lpvardesc;
    ITypeComp *lptcomp;
    }     BINDPTR;