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.

59 lines
889 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 1998 - 1999
  3. Module Name:
  4. scenlist
  5. Abstract:
  6. This header file describes the linkages to the smart card helper routines
  7. provided to Xiaohung Su for use in the smart card enrollment station.
  8. Author:
  9. Doug Barlow (dbarlow) 11/12/1998
  10. Remarks:
  11. This header file is hardcoded to UNICODE for backwards compatibility.
  12. Notes:
  13. ?Notes?
  14. --*/
  15. #ifndef _SCENUM_H_
  16. #define _SCENUM_H_
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. DWORD
  21. CountReaders(
  22. LPVOID pvHandle);
  23. DWORD
  24. ScanReaders(
  25. LPVOID *ppvHandle);
  26. BOOL
  27. EnumInsertedCards(
  28. LPVOID pvHandle,
  29. LPWSTR szCryptoProvider,
  30. DWORD cchCryptoProvider,
  31. LPDWORD pdwProviderType,
  32. LPCWSTR *pszReaderName);
  33. void
  34. EndReaderScan(
  35. LPVOID *ppvHandle);
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39. #endif // _SCENUM_H_