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