123456789101112131415161718192021222324 |
- #ifndef SERVERDOGSHM_H
- #define SERVERDOGSHM_H
- #include <stdbool.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <sys/types.h>
- #include <sys/ipc.h>
- #include <sys/shm.h>
- #define SHM_PATH "/"
- #define SHM_PORT 5111
- #pragma pack(1)
- typedef struct{
- uint data_feedtime;
- uint version_feedtime;
- }ServerDogShm;
- #pragma pack()
- #endif // SERVERDOGSHM_H
|