23 lines
334 B
C++
23 lines
334 B
C++
|
|
||
|
|
||
|
// Microsoft Windows
|
||
|
// Copyright (C) Microsoft Corporation, 1995 - 1995.
|
||
|
|
||
|
// File: dllmain.hxx
|
||
|
|
||
|
// Contents:
|
||
|
|
||
|
// History: 15-Aug-95 BruceFo Created
|
||
|
|
||
|
|
||
|
|
||
|
#ifndef __DLLMAIN_HXX__
|
||
|
#define __DLLMAIN_HXX__
|
||
|
|
||
|
VOID
|
||
|
OneTimeInit(
|
||
|
IN BOOL bDialog = FALSE // TRUE if for dialog API
|
||
|
);
|
||
|
|
||
|
#endif // __DLLMAIN_HXX__
|