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.

25 lines
701 B

  1. #ifndef _FileTransfer_AppletLoader_H_
  2. #define _FileTransfer_AppletLoader_H_
  3. #include <iappldr.h>
  4. class CFtLoader : public CRefCount, public IAppletLoader
  5. {
  6. public:
  7. CFtLoader(void);
  8. ~CFtLoader(void);
  9. // IAppletLoader methods
  10. STDMETHOD_(void, ReleaseInterface)(void);
  11. STDMETHOD_(APPLDR_RESULT, AppletStartup)(BOOL fNoUI);
  12. STDMETHOD_(APPLDR_RESULT, AppletCleanup)(DWORD dwTimeout);
  13. STDMETHOD_(APPLDR_RESULT, AppletInvoke)(BOOL fLocal, T120ConfID nConfID, LPSTR pszCmdLine);
  14. STDMETHOD_(APPLDR_RESULT, AppletQuery)(APPLET_QUERY_ID eQueryId);
  15. STDMETHOD_(APPLDR_RESULT, OnNM2xNodeJoin)(void);
  16. };
  17. #endif // _FileTransfer_AppletLoader_H_