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
601 B

  1. #ifndef _TSECCTRL_
  2. #define _TSECCTRL_
  3. // Command codes
  4. #define LOADFTAPPLET 100
  5. #define UNLOADFTAPPLET 101
  6. // Sets credentials directly in the transport
  7. #define TPRTCTRL_SETX509CREDENTIALS 111
  8. #define TPRTCTRL_GETX509CREDENTIALS 112
  9. // Prototype typedef
  10. typedef DWORD (WINAPI *PFN_TPRTSECCTRL)(DWORD, DWORD, DWORD);
  11. // Loadlibrary constant
  12. #define SZ_TPRTSECCTRL TEXT("TprtSecCtrl")
  13. // Static prototype
  14. extern DWORD WINAPI TprtSecCtrl (DWORD dwCode, DWORD dwParam1, DWORD dwParam2);
  15. #endif // _TSECCTRL_