-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathrmman.h
More file actions
36 lines (29 loc) · 1020 Bytes
/
rmman.h
File metadata and controls
36 lines (29 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
# _____ ___ ____ ___ ____
# ____| | ____| | | |____|
# | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
#-----------------------------------------------------------------------
# Copyright 2001-2004, ps2dev - http://www.ps2dev.org
# Licenced under Academic Free License version 2.0
# Review ps2sdk README & LICENSE files for further details.
*/
/**
* @file
* RMMAN definitions
*/
#ifndef __RMMAN_H__
#define __RMMAN_H__
#include <types.h>
#include <irx.h>
#include <librm-common.h>
extern int rmmanInit(void);
extern int rmmanOpen(int port, int slot, void *buffer);
extern int rmmanClose(int port, int slot);
extern int rmmanEnd(void);
#define rmman_IMPORTS_start DECLARE_IMPORT_TABLE(rmman, 1, 1)
#define rmman_IMPORTS_end END_IMPORT_TABLE
#define I_rmmanInit DECLARE_IMPORT(4, rmmanInit)
#define I_rmmanOpen DECLARE_IMPORT(5, rmmanOpen)
#define I_rmmanClose DECLARE_IMPORT(6, rmmanClose)
#define I_rmmanEnd DECLARE_IMPORT(7, rmmanEnd)
#endif /* __RMMAN_H__ */