| 82 | } |
| 83 | |
| 84 | XN_C_API XnStatus XN_C_DECL xnOSCreateSharedMemory(const XnChar* strName, XnUInt32 nSize, XnUInt32 nAccessFlags, XN_SHARED_MEMORY_HANDLE* phSharedMem) |
| 85 | { |
| 86 | return xnOSCreateSharedMemoryEx(strName, nSize, nAccessFlags, FALSE, phSharedMem); |
| 87 | } |
| 88 | |
| 89 | XN_C_API XnStatus XN_C_DECL xnOSCreateSharedMemoryEx(const XnChar* strName, XnUInt32 nSize, XnUInt32 nAccessFlags, XnBool bAllowOtherUsers, XN_SHARED_MEMORY_HANDLE* phSharedMem) |
| 90 | { |
nothing calls this directly
no test coverage detected