hMapFile = CreateFileMapping(
                 INVALID_HANDLE_VALUE,    // use paging file
                 NULL,                    // default security
                 PAGE_READWRITE,          // read/write access
                 0,                       // maximum object size (high-order DWORD)
                 BUF_SIZE,                // maximum object size (low-order DWORD)
                 szName);                 // name of mapping object

 

相关文章:

  • 2021-04-09
  • 2022-01-16
  • 2021-09-15
  • 2022-02-07
  • 2021-08-05
猜你喜欢
  • 2022-12-23
  • 2021-12-02
  • 2021-05-23
  • 2021-11-09
  • 2021-10-17
  • 2021-06-01
  • 2022-12-23
相关资源
相似解决方案