46bb1d31 ^
1 2 3 4 5 6 7 8 9 10 11 12
#ifndef SHAREDMEMORY_H #define SHAREDMEMORY_H #include "common.h" #include "fs.h" void initializeSharedMemory(); FileSystemNode* createSharedMemory(const char* name); void destroySharedMemory(const char* name); FileSystemNode* getSharedMemoryNode(const char* name); #endif // SHAREDMEMORY_H