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.

35 lines
667 B

  1. // File: pfnt120.h
  2. #ifndef _PFNT120_H_
  3. #define _PFNT120_H_
  4. extern "C" {
  5. #include <t120.h>
  6. }
  7. #include <gcc.h>
  8. #include <igccapp.h>
  9. #include <imcsapp.h>
  10. extern "C" {
  11. typedef MCSError (WINAPI * PFN_T120_AttachRequest)(IMCSSap **, DomainSelector, UINT, MCSCallBack, PVOID, UINT);
  12. typedef GCCError (WINAPI * PFN_T120_CreateAppSap)(IGCCAppSap **, PVOID, LPFN_APP_SAP_CB);
  13. }
  14. class PFNT120
  15. {
  16. private:
  17. static HINSTANCE m_hInstance;
  18. protected:
  19. PFNT120() {};
  20. ~PFNT120() {};
  21. public:
  22. static HRESULT Init(void);
  23. static PFN_T120_AttachRequest AttachRequest;
  24. static PFN_T120_CreateAppSap CreateAppSap;
  25. };
  26. #endif /* _PFNT120_H_ */