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.

32 lines
657 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1996 - 1997.
  5. //
  6. // File: memsnap.hxx
  7. //
  8. // Contents: a routine for taking a snapshot of memory and writing it to
  9. // a file stream.
  10. //
  11. // Classes:
  12. //
  13. // Functions: void memsnap( FILE* )
  14. //
  15. // Coupling:
  16. //
  17. // Notes:
  18. //
  19. // History: 10-22-1996 ericne Created
  20. //
  21. //----------------------------------------------------------------------------
  22. #ifndef _CMEMSNAP
  23. #define _CMEMSNAP
  24. // Function prototype
  25. void memsnap( FILE* );
  26. #endif