mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-16 08:29:25 +01:00
17 lines
260 B
C
17 lines
260 B
C
#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];
|
|
|
|
#endif
|
|
|
|
#endif
|