You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
643 B
25 lines
643 B
// Copyright (c) 2002 Microsoft Corporation
|
|
//
|
|
// File: UninstallProgressPage.h
|
|
//
|
|
// Synopsis: Defines the Uninstall Progress Page for the CYS
|
|
// wizard. This page shows the progress of the uninstall
|
|
// through a progress bar and changing text
|
|
//
|
|
// History: 04/12/2002 JeffJon Created
|
|
|
|
|
|
#include "pch.h"
|
|
#include "resource.h"
|
|
|
|
#include "UninstallProgressPage.h"
|
|
|
|
UninstallProgressPage::UninstallProgressPage()
|
|
:
|
|
InstallationProgressPage(
|
|
IDD_UNINSTALL_PROGRESS_PAGE,
|
|
IDS_PROGRESS_TITLE,
|
|
IDS_UNINSTALL_PROGRESS_SUBTITLE)
|
|
{
|
|
LOG_CTOR(UninstallProgressPage);
|
|
}
|