Esempio n. 1
0
// This is called immediately after the custom AppWizard is loaded.  Initialize
//  the state of the custom AppWizard here.
void CConsAppAppWiz::InitCustomAppWiz()
{
	// There are no steps in this custom AppWizard.
	SetNumberOfSteps(0);

	// Add build step to .hpj if there is one
	m_Dictionary[_T("HELP")] = _T("1");

	// TODO: Add any other custom AppWizard-wide initialization here.
}
Esempio n. 2
0
// This is called immediately after the custom AppWizard is loaded.  Initialize
//  the state of the custom AppWizard here.
void CXtensnTplAppWiz::InitCustomAppWiz()
{
	// There are no steps in this custom AppWizard.
	SetNumberOfSteps(0);

	// Add build step to .hpj if there is one
	m_Dictionary[_T("HELP")] = _T("1");

	// Inform AppWizard that we're making a DLL.
	m_Dictionary[_T("PROJTYPE_DLL")] = _T("1");

	// TODO: Add any other custom AppWizard-wide initialization here.
}
Esempio n. 3
0
// This is called immediately after the custom AppWizard is loaded.  Initialize
//  the state of the custom AppWizard here.
void CSDKAPWZAppWiz::InitCustomAppWiz()
{
	// Create a new dialog chooser; CDialogChooser's constructor initializes
	//  its internal array with pointers to the steps.
	m_pChooser = new CDialogChooser;

	// Set the maximum number of steps.
	SetNumberOfSteps(LAST_DLG);
	m_Dictionary[_T("PROJTYPE_DLL")] = _T("1");


	// TODO: Add any other custom AppWizard-wide initialization here.
}
Esempio n. 4
0
// This is called immediately after the custom AppWizard is loaded.  Initialize
//  the state of the custom AppWizard here.
void CTopStudioAppWiz::InitCustomAppWiz()
{
    // Create a new dialog chooser; CDialogChooser's constructor initializes
    //  its internal array with pointers to the steps.
    m_pChooser = new CDialogChooser;

    // At first, we don't know the total number of steps, since there are two
    //  possible "tracks" (MDI/SDI app and dialog-based app).
    SetNumberOfSteps(-1);

    // Inform AppWizard of the languages we support
    SetSupportedLanguages(_T("English [United States] (APPWZENU.DLL);0x40904b0"));

    // TODO: Add any other custom AppWizard-wide initialization here.
}
Esempio n. 5
0
// This is called immediately after the custom AppWizard is loaded.  Initialize
//  the state of the custom AppWizard here.
void CDriverWizardAppWiz::InitCustomAppWiz()
{
	// There are no steps in this custom AppWizard.
	SetNumberOfSteps(0);
}