PS2SDK
PS2 Homebrew Libraries
Loading...
Searching...
No Matches
bd_cache.h
Go to the documentation of this file.
1/*
2# _____ ___ ____ ___ ____
3# ____| | ____| | | |____|
4# | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
5#-----------------------------------------------------------------------
6# Licenced under Academic Free License version 2.0
7# Review ps2sdk README & LICENSE files for further details.
8*/
9
15#ifndef __BDM_CACHE_H__
16#define __BDM_CACHE_H__
17
18
19#include <tamtypes.h>
20#include <bdm.h>
21
22
23/* Create a new cached block device */
24struct block_device *bd_cache_create(struct block_device *bd);
25
26/* Destroy a cached block device */
27void bd_cache_destroy(struct block_device *cbd);
28
29
30#endif