DBLNODE

The DBLNODE structure is a node in a doubly linked list of surface interfaces.

typedef struct _DBLNODE
{
struct  _DBLNODE             FAR *next;
struct  _DBLNODE             FAR *prev;
LPDDRAWI_DDRAWSURFACE_LCL    object;
LPDDRAWI_DDRAWSURFACE_INT    object_int;
} DBLNODE;
typedef DBLNODE FAR *LPDBLNODE;

Members

  • next
    Link to the next node.
  • prev
    Link to the previous node.
  • object
    Pointer to a DDRAWI_DDRAWSURFACE_LCL structure that is the link to the object.
  • object_int
    Pointer to a DDRAWI_DDRAWSURFACE_INT structure containing the object interface.

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.