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.

24 lines
536 B

  1. //
  2. // msaa.h
  3. //
  4. #ifndef MSAA_H
  5. #define MSAA_H
  6. // when we ditch atl, this should be a static class! we don't need to allocate any memory!
  7. class CMSAAControl : public ITfMSAAControl,
  8. public CComObjectRoot_CreateInstance<CMSAAControl>
  9. {
  10. public:
  11. CMSAAControl() {}
  12. BEGIN_COM_MAP_IMMX(CMSAAControl)
  13. COM_INTERFACE_ENTRY(ITfMSAAControl)
  14. END_COM_MAP_IMMX()
  15. // ITfMSAAControl
  16. STDMETHODIMP SystemEnableMSAA();
  17. STDMETHODIMP SystemDisableMSAA();
  18. };
  19. #endif // MSAA_H