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.

23 lines
556 B

  1. // File: pfnt120.cpp
  2. #include "precomp.h"
  3. #include "pfnt120.h"
  4. PFN_T120_AttachRequest PFNT120::AttachRequest = NULL;
  5. PFN_T120_CreateAppSap PFNT120::CreateAppSap = NULL;
  6. HINSTANCE PFNT120::m_hInstance = NULL;
  7. APIFCN s_apiFcnT120[] = {
  8. {(PVOID *) &PFNT120::AttachRequest, "MCS_AttachRequest"},
  9. {(PVOID *) &PFNT120::CreateAppSap, "GCC_CreateAppSap"},
  10. };
  11. HRESULT PFNT120::Init(void)
  12. {
  13. if (NULL != m_hInstance)
  14. return S_OK;
  15. return HrInitLpfn(s_apiFcnT120, ARRAY_ELEMENTS(s_apiFcnT120), &m_hInstance, TEXT("MST120.DLL"));
  16. }