Lines Matching refs:boolean

41     boolean         m_bIsWin9x      : 1;
42 boolean m_bNeedReboot : 1;
43 boolean m_bAdministrative : 1;
61 boolean m_bQuiet : 1;
62 boolean m_bIgnoreAlreadyRunning : 1;
63 boolean m_bRegNoMsoTypes :1;
64 boolean m_bRegAllMsoTypes :1;
65 boolean m_bIsMinorUpgrade :1;
66 boolean m_bSupportsPatch :1;
76 boolean GetPathToFile( TCHAR* pFileName, TCHAR **pPath );
80 boolean GetProfileSection( LPCTSTR pFileName, LPCTSTR pSection,
85 boolean LaunchInstaller( LPCTSTR pParam );
89 boolean GetCmdLineParameters( LPTSTR *pCmdLine );
91 LPTSTR *pNext, boolean bStripQuotes = false );
92 boolean IsAdmin();
94 boolean GetCommandLine();
96 boolean IsTerminalServerInstalled() const;
98 boolean IsPatchInstalled( TCHAR* pBaseDir, TCHAR* pFileName );
99 boolean InstallRuntimes( TCHAR* pProductCode, TCHAR* pFileName );
106 virtual boolean Initialize( HINSTANCE hInst );
107 virtual boolean AlreadyRunning() const;
108 virtual boolean ReadProfile();
109 virtual boolean GetPatches();
110 virtual boolean ChooseLanguage( long& rLanguage );
111 virtual boolean CheckVersion();
112 virtual boolean CheckForUpgrade();
113 virtual boolean InstallRuntimes();
114 virtual boolean Install( long nLanguage );
120 boolean IsWin9x() const { return m_bIsWin9x; } in IsWin9x()
124 boolean IsAdminInstall() { return m_bAdministrative; } in IsAdminInstall()
125 void SetAdminInstall( boolean bValue ) { m_bAdministrative = bValue; } in SetAdminInstall()
127 void SetRebootNeeded( boolean bNeedReboot ) { m_bNeedReboot = bNeedReboot; } in SetRebootNeeded()
128 boolean NeedReboot() const { return m_bNeedReboot; } in NeedReboot()