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.

24 lines
405 B

  1. typedef enum _AUTH_OPERATION {
  2. AuthOperLogon,
  3. AuthOperUnlock
  4. } AUTH_OPERATION;
  5. typedef enum _AUTH_TYPE {
  6. AuthTypePassword,
  7. AuthTypeSmartCard
  8. } AUTH_TYPE;
  9. EXTERN_C HANDLE AuthMonitor(
  10. AUTH_OPERATION AuthOper,
  11. BOOL Console,
  12. PUNICODE_STRING UserName,
  13. PUNICODE_STRING Domain,
  14. PWSTR Card,
  15. PWSTR Reader,
  16. PKERB_SMART_CARD_PROFILE Profile,
  17. DWORD Timer,
  18. NTSTATUS Status
  19. );