23 lines
450 B
C++
23 lines
450 B
C++
|
//+----------------------------------------------------------------------------
|
||
|
//
|
||
|
// Copyright (C) 1999, Microsoft Corporation
|
||
|
//
|
||
|
// File: flush.hxx
|
||
|
//
|
||
|
// Contents: flush.c prototypes, etc
|
||
|
//
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef _FLUSH_HXX
|
||
|
#define _FLUSH_HXX
|
||
|
|
||
|
DWORD
|
||
|
PktFlush(
|
||
|
LPWSTR EntryToFlush);
|
||
|
|
||
|
DWORD
|
||
|
SpcFlush(
|
||
|
LPWSTR EntryToFlush);
|
||
|
|
||
|
#endif _FLUSH_HXX
|