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.
|
|
#ifndef _WhiteBoard_AppletLoader_H_
#define _WhiteBoard_AppletLoader_H_
#include <iappldr.h>
class WBLoader : public CRefCount, public IAppletLoader { public:
WBLoader(void); ~WBLoader(void);
// IAppletLoader methods
STDMETHOD_(void, ReleaseInterface)(void); STDMETHOD_(APPLDR_RESULT, AppletStartup)(BOOL fNoUI); STDMETHOD_(APPLDR_RESULT, AppletCleanup)(DWORD dwTimeout); STDMETHOD_(APPLDR_RESULT, AppletInvoke)(BOOL fRemote, T120ConfID nConfID, LPSTR pszCmdLine); STDMETHOD_(APPLDR_RESULT, AppletQuery)(APPLET_QUERY_ID eQueryId); STDMETHOD_(APPLDR_RESULT, OnNM2xNodeJoin)(void); };
#endif // _WhiteBoard_AppletLoader_H_
|