mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
37 lines
627 B
C++
37 lines
627 B
C++
![]() |
/* info_sgi.cpp
|
||
|
|
||
|
!!!!! this file will be included by info.cpp !!!!!
|
||
|
*/
|
||
|
|
||
|
/* all following functions should return true, when the Information
|
||
|
was filled into the lBox-Widget.
|
||
|
returning false indicates, that information was not available.
|
||
|
*/
|
||
|
|
||
|
#include <sys/systeminfo.h>
|
||
|
|
||
|
bool GetInfo_IRQ(QListView *) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bool GetInfo_DMA(QListView *) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bool GetInfo_PCI(QTreeWidget*) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bool GetInfo_IO_Ports(QListView *) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bool GetInfo_SCSI(QListView *) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
bool GetInfo_XServer_and_Video(QListView *lBox) {
|
||
|
return GetInfo_XServer_Generic(lBox);
|
||
|
}
|
||
|
|