Crafter.Graphics/shm.h
2025-04-16 00:43:33 +02:00

10 lines
113 B
C

#ifndef SHM_H
#define SHM_H
#include <sys/types.h>
extern "C" {
int create_shm_file(off_t size);
}
#endif