Microsoft Windows CE 3.0  

DBLNODE

Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

The DBLNODEstructure 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_LCLstructure that is the link to the object.
object_int
Pointer to a DDRAWI_DDRAWSURFACE_INTstructure containing the object interface.

 Last updated on Tuesday, July 13, 2004

© 2004 Microsoft Corporation. All rights reserved.