最終更新:2017-03-21 (火) 16:46:52 (2584d)  

FILE_FLAG_OVERLAPPED
Top / FILE_FLAG_OVERLAPPED

The file or device is being opened or created for asynchronous I/O.

0x40000000

指定

CreateFile

  • dwFlagsAndAttributes?
    HANDLE WINAPI CreateFile(
      _In_     LPCTSTR               lpFileName,
      _In_     DWORD                 dwDesiredAccess,
      _In_     DWORD                 dwShareMode,
      _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes,
      _In_     DWORD                 dwCreationDisposition,
      _In_     DWORD                 dwFlagsAndAttributes,
      _In_opt_ HANDLE                hTemplateFile
    );

関連