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.

37 lines
416 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. vfrandom.h
  5. Abstract:
  6. This header exposes support for random number generation as needed by the
  7. verifier.
  8. Author:
  9. Adrian J. Oney (adriao) 28-Jun-2000
  10. Environment:
  11. Kernel mode
  12. Revision History:
  13. --*/
  14. VOID
  15. VfRandomInit(
  16. VOID
  17. );
  18. ULONG
  19. FASTCALL
  20. VfRandomGetNumber(
  21. IN ULONG Minimum,
  22. IN ULONG Maximum
  23. );