DBLNODE

This 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.

Requirements

OS Versions: Windows CE 2.12 and later. Version 2.12 requires DXPAK 1.0 or later.
Header: Ddrawi.h.

See Also

DDRAWI_DDRAWSURFACE_LCL | DDRAWI_DDRAWSURFACE_INT | DirectDrawSurface Structures

 Last updated on Tuesday, May 18, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.