Source code of Windows XP (NT5)
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.

26 lines
792 B

  1. /******************************Module*Header*******************************\
  2. * Module Name: metasup.h
  3. *
  4. * OpenGL metafile support
  5. *
  6. * History:
  7. * Thu Feb 23 15:27:47 1995 -by- Drew Bliss [drewb]
  8. * Created
  9. *
  10. * Copyright (c) 1995 Microsoft Corporation
  11. \**************************************************************************/
  12. #ifndef __METASUP_H__
  13. #define __METASUP_H__
  14. BOOL CreateMetaRc(HDC hdc, PLRC plrc);
  15. void DeleteMetaRc(PLRC plrc);
  16. void ActivateMetaRc(PLRC plrc, HDC hdc);
  17. void DeactivateMetaRc(PLRC plrc);
  18. void MetaRcEnd(PLRC plrc);
  19. void MetaGlProcTables(PGLCLTPROCTABLE *ppgcpt, PGLEXTPROCTABLE *ppgept);
  20. void MetaSetCltProcTable(GLCLTPROCTABLE *pgcpt, GLEXTPROCTABLE *pgept);
  21. void MetaGetCltProcTable(GLCLTPROCTABLE *pgcpt, GLEXTPROCTABLE *pgept);
  22. #endif /* __METASUP_H__ */