Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
640 B

  1. // RastColl.h - declaration of the CRastCollection class
  2. //
  3. // Copyright Microsoft Corporation, 1997.
  4. //
  5. #ifndef _RASTCOLL_H_
  6. #define _RASTCOLL_H_
  7. typedef struct _RASTFNREC {
  8. DWORD rgdwRastCap[RASTCAPRECORD_SIZE];
  9. PFNRENDERSPANS pfnRastFunc;
  10. int iIndex; // index for disable mask
  11. char pszRastDesc[128]; // brief human description of monolith
  12. } RASTFNREC;
  13. class CRastCollection {
  14. private:
  15. RASTFNREC* RastFnLookup(CRastCapRecord*,RASTFNREC*,int);
  16. public:
  17. RASTFNREC* Search(PD3DI_RASTCTX,CRastCapRecord*);
  18. };
  19. #endif // _RASTCOLL_H_