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