OLESERVER

3.1

#include <ole.h>

typedef struct _OLESERVER {     /* os */
    LPOLESERVERVTBL lpvtbl;
    .
    .  /* any server-supplied state information */
    .
} OLESERVER;

The OLESERVER structure points to a table of function pointers for the server. This structure is initialized and maintained by servers for the server library.

Members

lpvtbl

Points to a table of function pointers for the server.