klaptopdaemon
memory.h
Go to the documentation of this file.00001 /* 00002 * memory.h 1.3 1998/05/10 12:10:34 00003 * 00004 * The contents of this file are subject to the Mozilla Public License 00005 * Version 1.0 (the "License"); you may not use this file except in 00006 * compliance with the License. You may obtain a copy of the License 00007 * at http://www.mozilla.org/MPL/ 00008 * 00009 * Software distributed under the License is distributed on an "AS IS" 00010 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See 00011 * the License for the specific language governing rights and 00012 * limitations under the License. 00013 * 00014 * The initial developer of the original code is David A. Hinds 00015 * <dhinds@hyper.stanford.edu>. Portions created by David A. Hinds 00016 * are Copyright (C) 1998 David A. Hinds. All Rights Reserved. 00017 */ 00018 00019 #ifndef _LINUX_MEMORY_H 00020 #define _LINUX_MEMORY_H 00021 00022 typedef struct erase_info_t { 00023 u_long Offset; 00024 u_long Size; 00025 } erase_info_t; 00026 00027 #define MEMGETINFO _IOR('M', 1, region_info_t) 00028 #define MEMERASE _IOW('M', 2, erase_info_t) 00029 00030 #endif /* _LINUX_MEMORY_H */
KDE 4.0 API Reference