2002-07-09 16:24:59 +04:00
|
|
|
/*
|
|
|
|
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
** Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
|
|
|
#ifndef _KERNEL_VM_STORE_DEVICE_H
|
|
|
|
#define _KERNEL_VM_STORE_DEVICE_H
|
|
|
|
|
|
|
|
#include <kernel.h>
|
|
|
|
#include <vm.h>
|
|
|
|
|
2004-10-20 04:33:06 +04:00
|
|
|
vm_store *vm_store_create_device(addr_t base_addr);
|
2002-07-09 16:24:59 +04:00
|
|
|
|
|
|
|
#endif
|