20 lines
558 B
C
20 lines
558 B
C
|
/*==========================================================================;
|
||
|
*
|
||
|
* Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
|
||
|
*
|
||
|
* File: retrocfg.h
|
||
|
* Content: Prototypes the RetroConfigProcess function
|
||
|
* History:
|
||
|
* Date By Reason
|
||
|
* ============
|
||
|
* 10/13/99 pnewson created
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef _RETROCFG_H_
|
||
|
#define _RETROCFG_H_
|
||
|
|
||
|
HRESULT RetroConfigProcess(HINSTANCE hResDLLInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow);
|
||
|
|
||
|
#endif
|
||
|
|