mini/ipcstruct.h

17 lines
260 B
C
Raw Normal View History

2009-01-08 23:27:22 +01:00
#ifndef __IPCSTRUCT_H__
#define __IPCSTRUCT_H__
#define IPC_IN_SIZE 32
#define IPC_OUT_SIZE 32
#ifndef _LANGUAGE_ASSEMBLY
#include "ipc.h"
extern volatile ipc_request ipc_in[IPC_IN_SIZE];
extern volatile ipc_request ipc_out[IPC_OUT_SIZE];
2009-01-08 23:27:22 +01:00
#endif
#endif