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.

28 lines
1.0 KiB

  1. /*---------------------------------------------------------------------------
  2. File: SecPI.h
  3. Comments: Structure definition for the structure used for challenge/response
  4. authentication of our plug ins. The dispatcher sends this structure to each
  5. plug-in before adding the plug-in to the list of plug-ins to be dispatched.
  6. The plug-in must modify this structure in the correct way, and return it to
  7. the dispatcher. This will make it more difficult for others to use our
  8. undocumented plug-in interface.
  9. (c) Copyright 1999, Mission Critical Software, Inc., All Rights Reserved
  10. Proprietary and confidential to Mission Critical Software, Inc.
  11. REVISION LOG ENTRY
  12. Revision By: Christy Boles
  13. Revised on 02/15/99 11:33:52
  14. ---------------------------------------------------------------------------
  15. */
  16. #pragma once
  17. typedef struct
  18. {
  19. long lTime;
  20. long lRand1;
  21. long lRand2;
  22. char MCS[4];
  23. }McsChallenge;