32 lines
999 B
C
32 lines
999 B
C
|
/***************************************************************************\
|
||
|
*
|
||
|
* File: Public.h
|
||
|
*
|
||
|
* Description:
|
||
|
* Public.h contains a list of definitions that are exposed and available
|
||
|
* outside this project. Any other DirectUser project that wishes to use
|
||
|
* these services directly instead of going through public API's can include
|
||
|
* a corresponding [Project]P.h available in the \inc directory.
|
||
|
*
|
||
|
* Definitions that are not exposed through this file are considered project
|
||
|
* specific implementation details and should not used in other projects.
|
||
|
*
|
||
|
*
|
||
|
* History:
|
||
|
* 1/18/2000: JStall: Created
|
||
|
*
|
||
|
* Copyright (C) 2000 by Microsoft Corporation. All rights reserved.
|
||
|
*
|
||
|
\***************************************************************************/
|
||
|
|
||
|
|
||
|
#if !defined(LAVA__Public_h__INCLUDED)
|
||
|
#define LAVA__Public_h__INCLUDED
|
||
|
|
||
|
#include "DxContainer.h"
|
||
|
#include "HWndContainer.h"
|
||
|
#include "NcContainer.h"
|
||
|
#include "HWndHelp.h"
|
||
|
|
||
|
#endif // LAVA__Public_h__INCLUDED
|