DXSURFSTATUS Enumeration

Describes general properties of a DXSurface object.

Syntax

typedef enum DXSURFSTATUS
{
    DXSURF_TRANSIENT    =   (1 << 0),
    DXSURF_READONLY     =   (1 << 1),
    DXSURF_VALIDFLAGS   =   (DXSURF_TRANSIENT | DXSURF_READONLY)    
} DXSURFSTATUS;

Elements

DXSURF_TRANSIENT
Value indicating that the pointer to the surface could change during run time.
DXSURF_READONLY
Value indicating that the surface is read-only.
DXSURF_VALIDFLAGS
Bitwise OR of the two flags used to check for valid input.

See Also

IDXSurface::GetStatusFlags, IDXSurface::SetStatusFlags


Top of Page Top of Page
© 2000 Microsoft and/or its suppliers. All rights reserved. Terms of Use.