31 lines
530 B
C++
31 lines
530 B
C++
|
//____________________________________________________________________________
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (C) Microsoft Corporation, 1995 - 1996.
|
||
|
//
|
||
|
// File: dynload.hxx
|
||
|
//
|
||
|
// Contents: Prototypes for functions exported by dynload.cxx.
|
||
|
//
|
||
|
// Classes:
|
||
|
//
|
||
|
// Functions:
|
||
|
//
|
||
|
// History: 07-Oct-96 AnirudhS Created.
|
||
|
//
|
||
|
//____________________________________________________________________________
|
||
|
|
||
|
|
||
|
#ifndef _DYNLOAD_HXX_
|
||
|
#define _DYNLOAD_HXX_
|
||
|
|
||
|
|
||
|
void
|
||
|
FreeDynLoadLibs(
|
||
|
);
|
||
|
|
||
|
|
||
|
#endif // _DYNLOAD_HXX_
|
||
|
|
||
|
|