12345678910111213141516171819202122232425 |
- #ifndef AGBOXSHM_H
- #define AGBOXSHM_H
- #include <stdbool.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <sys/types.h>
- #include <sys/ipc.h>
- #include <sys/shm.h>
- #define SHM_PORT 8522
- #define SHM_PATH "/"
- typedef struct {
- uint t_time;
- }ProcessStatus;
- typedef struct {
- unsigned char Enabled;
- ProcessStatus processStatus[16];
- }AGBoxShm;
- #endif // AGBOXSHM_H
|