2002-07-09 16:24:59 +04:00
|
|
|
/*
|
2005-05-17 03:17:45 +04:00
|
|
|
* Copyright 2005, Axel Dörfler, axeld@pinc-software.de.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
* Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
2002-07-09 16:24:59 +04:00
|
|
|
#ifndef _KERNEL_VM_STORE_NULL_H
|
|
|
|
#define _KERNEL_VM_STORE_NULL_H
|
|
|
|
|
|
|
|
|
2005-05-17 03:17:45 +04:00
|
|
|
#include <vm_types.h>
|
|
|
|
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2005-05-17 03:17:45 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
2002-07-09 16:24:59 +04:00
|
|
|
#endif
|
2005-05-17 03:17:45 +04:00
|
|
|
vm_store *vm_store_create_null(void);
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2005-05-17 03:17:45 +04:00
|
|
|
#endif /* _KERNEL_VM_STORE_NULL_H */
|