| 1835 | |
| 1836 | |
| 1837 | CString |
| 1838 | Ext2SysInformation() |
| 1839 | { |
| 1840 | ULONG i = 0; |
| 1841 | CString s; |
| 1842 | PEXT2_VOLUME chain = gVols; |
| 1843 | |
| 1844 | s = "\r\nDisk devices:\r\n"; |
| 1845 | for (i=0; i < g_nDisks; i++) { |
| 1846 | s += Ext2DiskInformation(&gDisks[i]); |
| 1847 | } |
| 1848 | |
| 1849 | s += "\r\nCdrom/DVD devices:\r\n"; |
| 1850 | |
| 1851 | for (i=0; i < g_nCdroms; i++) { |
| 1852 | s += Ext2CdromInformation(&gCdroms[i]); |
| 1853 | } |
| 1854 | |
| 1855 | while (chain) { |
| 1856 | s += Ext2VolumeInformation(chain); |
| 1857 | chain = chain->Next; |
| 1858 | } |
| 1859 | |
| 1860 | return s; |
| 1861 | } |
| 1862 | |
| 1863 | VOID |
| 1864 | Ext2CleanupDisks() |
no test coverage detected