35 lines
667 B
C
35 lines
667 B
C
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// WIZARD.H
|
|
//
|
|
// Microsoft Confidential
|
|
// Copyright (c) Microsoft Corporation 1998
|
|
// All rights reserved
|
|
//
|
|
// Includes all external include files, defined values, macros, data
|
|
// structures, and fucntion prototypes for the corisponding CXX file.
|
|
//
|
|
// Jason Cohen (JCOHEN)
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Only include this file once.
|
|
//
|
|
#ifndef _WIZARD_H_
|
|
#define _WIZARD_H_
|
|
|
|
|
|
// Include file(s).
|
|
//
|
|
#include <windows.h>
|
|
|
|
|
|
// External function prototype(s).
|
|
//
|
|
INT CreateWizard(HINSTANCE, HWND);
|
|
|
|
|
|
#endif // _WIZARD_H_
|