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
32 lines
657 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1996 - 1997.
|
|
//
|
|
// File: memsnap.hxx
|
|
//
|
|
// Contents: a routine for taking a snapshot of memory and writing it to
|
|
// a file stream.
|
|
//
|
|
// Classes:
|
|
//
|
|
// Functions: void memsnap( FILE* )
|
|
//
|
|
// Coupling:
|
|
//
|
|
// Notes:
|
|
//
|
|
// History: 10-22-1996 ericne Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef _CMEMSNAP
|
|
#define _CMEMSNAP
|
|
|
|
|
|
// Function prototype
|
|
void memsnap( FILE* );
|
|
|
|
|
|
#endif
|
|
|