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.

42 lines
637 B

  1. /*
  2. *
  3. * NOTES:
  4. *
  5. * REVISIONS:
  6. * pcy30Apr93: Split off from comctrl
  7. * pcy02May93: Added missing endif
  8. * cad19May93: Added IsA() method
  9. * cad27May93: added include file to reduce lib size
  10. *
  11. */
  12. #ifndef __DCOMCTRL_H
  13. #define __DCOMCTRL_H
  14. #include "_defs.h"
  15. //
  16. // Defines
  17. //
  18. _CLASSDEF(DevComContrl)
  19. //
  20. // Implementation uses
  21. //
  22. #include "comctrl.h"
  23. class DevComContrl : public CommController {
  24. protected:
  25. PUpdateObj theParent;
  26. public:
  27. DevComContrl(PUpdateObj aParent);
  28. virtual ~DevComContrl();
  29. virtual INT Initialize();
  30. virtual INT Update(PEvent anEvent);
  31. };
  32. #endif