Source code of Windows XP (NT5)
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.

47 lines
1.0 KiB

  1. /*****************************************************************************\
  2. * MODULE: basicsec.h
  3. *
  4. * Header file for basic-security.
  5. *
  6. *
  7. * Copyright (C) 1996-1997 Microsoft Corporation
  8. * Copyright (C) 1996-1997 Hewlett Packard
  9. *
  10. * History:
  11. * 24-Aug-1997 HWP-Guys Created.
  12. *
  13. \*****************************************************************************/
  14. #ifdef NOT_IMPLEMENTED
  15. DWORD AuthenticateUser(
  16. LPVOID *lppvContext,
  17. LPTSTR lpszServerName,
  18. LPTSTR lpszScheme,
  19. DWORD dwFlags,
  20. LPSTR lpszInBuffer,
  21. DWORD dwInBufferLength,
  22. LPTSTR lpszUserName,
  23. LPTSTR lpszPassword);
  24. VOID UnloadAuthenticateUser(
  25. LPVOID *lppvContext,
  26. LPTSTR lpszServer,
  27. LPTSTR lpszScheme);
  28. DWORD PreAuthenticateUser(
  29. LPVOID *lppvContext,
  30. LPTSTR lpszServerName,
  31. LPTSTR lpszScheme,
  32. DWORD dwFlags,
  33. LPSTR lpszInBuffer,
  34. DWORD dwInBufferLength,
  35. LPSTR lpszOutBuffer,
  36. LPDWORD lpdwOutBufferLength,
  37. LPTSTR lpszUserName,
  38. LPTSTR lpszPassword);
  39. BOOL GetTokenHandle(
  40. PHANDLE phToken)
  41. #endif