This is kvm.h in view mode; [Download] [Up]
#ifndef __kvm_h__ #define __kvm_h__ /* * $Header: /src/common/usc/bin/sysinfo/RCS/kvm.h,v 1.3 1992/06/01 22:43:53 mcooper Exp $ * * $Log: kvm.h,v $ * Revision 1.3 1992/06/01 22:43:53 mcooper * Cleanup. * * Revision 1.2 1992/03/01 23:19:55 mcooper * Put surrounding #ifndef around file to avoid multiple include * problems. Also move struct _kvmd here from kvm.c. * * Revision 1.1 1991/09/28 03:14:49 mcooper * Initial revision * */ struct _kvmd { int kmemd; char *namelist; char *vmfile; }; typedef struct _kvmd kvm_t; extern kvm_t *kvm_open(); extern int kvm_close(); extern int kvm_nlist(); extern int kvm_read(); extern int kvm_write(); #endif /* __kvm_h__ */
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.