23 lines
410 B
C++
23 lines
410 B
C++
//-----------------------------------------------------------------------------
|
|
//
|
|
// File: uloader.h
|
|
// Copyright (C) 1994-1997 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
//
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
class CParserUnloader : public CFlushMemory
|
|
{
|
|
public:
|
|
CParserUnloader(BOOL fDelete);
|
|
|
|
void FlushMemory(void);
|
|
};
|
|
|
|
|
|
|