00001 /****************************************************************************** 00002 * Shamelessly ripped and modified from the below sources: 00003 ******************************************************************************/ 00004 00005 /* $XFree86: xc/programs/xload/xload.h,v 1.2 2001/08/28 17:10:39 tsi Exp $ */ 00006 00007 #ifndef _XNET_H_ 00008 #define _XNET_H_ 00009 00010 #include <X11/Intrinsic.h> 00011 00012 /* 00013 * Definition of the Application resources structure. 00014 */ 00015 typedef struct _XNetResources { 00016 Boolean show_label; 00017 String interface; 00018 String units; 00019 } XNetResources; 00020 00021 extern XNetResources xnet_resources; 00022 00023 extern void InitNetPoint(void); 00024 extern void GetNetPoint(Widget w, XtPointer closure, XtPointer call_data); 00025 00026 extern char interface[1025]; 00027 00028 #endif