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 _XMEM_H_ 00008 #define _XMEM_H_ 00009 00010 #include <X11/Intrinsic.h> 00011 00012 /* 00013 * Definition of the Application resources structure. 00014 */ 00015 typedef struct _XMemResources { 00016 Boolean show_label; 00017 String units; 00018 } XMemResources; 00019 00020 extern XMemResources xmem_resources; 00021 00022 extern void InitMemPoint(void); 00023 extern void GetMemPoint(Widget w, XtPointer closure, XtPointer call_data); 00024 00025 #endif