PAGES.H

/*------------------------------------------------*\ 
*
*Copyright (c) 1997 Microsoft Corporation
*
*Module Name:
*
*pages.h
*
*Abstract:
*
*Declaration of property-sheet page variables
*and routines for Service Provider wizard pages
*
\*------------------------------------------------*/


#ifndef __PAGES_H__
#define __PAGES_H__


#include <windows.h>
#include "resource.h"


//
//TO DO:Set this to the number of pages for your provider
//

#defineNUM_PAGES2

//
//TO DO:Set these to the dialog IDs of your first and last pages
//

#define IDD_FIRST_PAGEIDD_PAGE_0
#define IDD_LAST_PAGEIDD_PAGE_1


//
//TO DO:Declare the dialog routines for each of your pages here
//

BOOL CALLBACK Page0DlgProc(HWND hDlg,
UINT uMsg,
WPARAM wParam,
LPARAM lParam);

BOOL CALLBACK Page1DlgProc(HWND hDlg,
UINT uMsg,
WPARAM wParam,
LPARAM lParam);


typedef struct tagPAGEINFO
{
BOOL (CALLBACK *DlgProc)(HWND, UINT, WPARAM, LPARAM);
UINT uDlgID;

} PAGEINFO;


extern const PAGEINFO g_pPageInfo[NUM_PAGES];



#endif // __PAGES_H__