mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2026-01-01 03:12:13 +08:00
18 lines
281 B
C
18 lines
281 B
C
/**
|
|
* @file libipc/mmap.h
|
|
* @author mutouyun (orz@orzz.org)
|
|
* @brief Define the methods of memory-mapped file I/O
|
|
* @date 2022-04-17
|
|
*/
|
|
#pragma once
|
|
|
|
#include "libimp/export.h"
|
|
#include "libimp/result.h"
|
|
#include "libipc/def.h"
|
|
|
|
LIBIPC_NAMESPACE_BEG_
|
|
|
|
|
|
|
|
LIBIPC_NAMESPACE_END_
|