anybody could help me?

解决方案 »

  1.   

    1、就是你要创建的 File Mapping 的大小,如果你想要超过 2^32 字节的 File Mapping,就设置 dwMaximumSizeHigh。2、MSDN 资料说得很模糊,没有明确说不可以。
    Windows 95/98/Me: File handles that have been used to create file-mapping objects must not be used in subsequent calls to file I/O functions, such as ReadFile and WriteFile. In general, if a file handle has been used in a successful call to the CreateFileMapping function, do not use that handle unless you first close the corresponding file-mapping object.应该说,I/O functions 不包括 CreateFileMapping;CreateFileMapping 是属于 Memory Management。你需要自己做试验了。