Enable build with iniparser v 3.1
[platform/framework/native/appfw.git] / inc / FIoMemoryMappedFile.h
index 84ceafc..857e0ee 100644 (file)
@@ -151,7 +151,7 @@ public:
        *                                                                               It should be a multiple of the page size.
        * @param[in]    length                                  The length of the mapping space
        * @param[in]    protection                              The memory protection of the mapping @n
-       *                                                                               It is either ::MEMORY_PROTECTION_MODE_NONE or the bitwise-inclusive OR of one
+       *                                                                               It is either Base::Runtime::MEMORY_PROTECTION_MODE_NONE or the bitwise-inclusive OR of one
        *                                                                               or more of the other modes in Base::Runtime::MemoryProtectionMode.
        * @param[in]    flag                                    The flag providing information about the handling of a memory mapped file @n
        *                                                                               It is the bitwise-inclusive OR of the flags in Tizen::Io::MemoryMappedFileFlag.
@@ -159,23 +159,23 @@ public:
        *                                                                               It should be a multiple of the page size.
        * @exception    E_SUCCESS                               The method is successful.
        * @exception    E_ILLEGAL_ACCESS                The specified @c flag is ::MEMORY_MAPPED_FILE_FLAG_SHARED and the specified @c
-       *                                                                               protection is ::MEMORY_PROTECTION_MODE_WRITE, but the specified file of
+       *                                                                               protection is Base::Runtime::MEMORY_PROTECTION_MODE_WRITE, but the specified file of
        *                                                                               MemoryMappedFile::Construct() is not opened with read-write mode.
        * @exception    E_INVALID_ARG                   Either of the following conditions has occurred:
        *                                                                               - The specified @c address or @c offset is not aligned on a page boundary.
        *                                                                               - The specified @c length is not positive.
-       *                                                                               - The specified @c protection, @c flag, or @c offset is invalid.
+       *                                                                               - The specified @c protection, @c flag, or @c offset is invalid.
        *                                                                               - The specified @c flag cannot contain both ::MEMORY_MAPPED_FILE_FLAG_PRIVATE and
        *                                                                               ::MEMORY_MAPPED_FILE_FLAG_SHARED.
        * @exception    E_MAX_EXCEEDED                  The number of mapped regions has exceeded the maximum limit.
        * @exception    E_OBJECT_LOCKED                 The mapped file has been locked.
        * @exception    E_OUT_OF_MEMORY                 Either of the following conditions has occurred:
        *                                                                               - The memory is insufficient.
-       *                                                                               - The specified @c flag is ::MEMORY_MAPPED_FILE_FLAG_FIXED, and the specified address
-       *                                                                                 range exceeds that allowed for the address space of a current process.
+       *                                                                               - The specified @c flag is ::MEMORY_MAPPED_FILE_FLAG_FIXED, and the specified @c address
+       *                                                                               range exceeds that allowed for the address space of a current process.
        * @exception    E_IO                                    Either of the following conditions has occurred:
        *                                                                               - The underlying file system does not support memory mapping.
-       *                                                                               - The specified @c protection is ::MEMORY_PROTECTION_MODE_EXEC, but the mapped file
+       *                                                                               - The specified @c protection is Base::Runtime::MEMORY_PROTECTION_MODE_EXEC, but the mapped file
        *                                                                               exists on a file system that has been mounted no-exec.
        * @remarks
        *                               - The specific error code can be accessed using the GetLastResult() method.