1
0

mbsvcwac.h 390 B

123456789101112131415161718192021222324
  1. #ifndef _MB_H
  2. #define _MB_H
  3. #include "../ns_database/nde.h"
  4. #include "../studio/wac.h"
  5. #define WACNAME WACmb
  6. class GenWnd;
  7. class WACNAME : public WAComponentClient {
  8. public:
  9. WACNAME();
  10. virtual ~WACNAME();
  11. virtual const char *getName() { return "Internet Explorer ActiveX MiniBrowser Service"; };
  12. virtual GUID getGUID();
  13. private:
  14. };
  15. extern WACNAME *wacmb;
  16. #endif