#ifndef OBJECT_H #define OBJECT_H /* Defines */ enum Objects { NvSyncNotify = 0xD0000001, NvDmaFB = 0xD0FB0001, NvDmaTT = 0xD0AA0001, Nv3D = 0x80970001, NvImageBlit = 0x809F0001, NvCtxSurf2D = 0x80620001, NvRasterOp = 0x80430001, NvClipRect = 0x80190001, NvImagePattern = 0x80440001 }; enum Subchannels { NvSubCtxSurf2D = 0, NvSubImageBlit = 1, NvSub3D = 2, NvSubRasterOp = 3, NvSubClipRect = 4, NvSubImagePattern = 5 }; /* Functions */ int object_list_create(int class_3d); #endif