FNOPEN 宏 (fdi.h)

FNOPEN 宏为应用程序定义的回调函数提供声明,以便在 FDI 上下文中打开文件。

语法

void FNOPEN(
  [in]  fn
);

参数

[in] fn

文件的名称。

对于内阁中的文件,名称直接来自内阁文件。 如果内阁文件是恶意的,则名称可能包含非法或恶意的文件名字符。

返回值

没有

言论

该函数接受类似于 _open的参数。

例子

FNOPEN(fnFileOpen)
{
    HANDLE hFile = NULL;
    DWORD dwDesiredAccess = 0; 
    DWORD dwCreationDisposition = 0;

    UNREFERENCED_PARAMETER(pmode);

    if ( oflag & _O_RDWR )
    {
        dwDesiredAccess = GENERIC_READ | GENERIC_WRITE;
    }
    else if ( oflag & _O_WRONLY )
    {
        dwDesiredAccess = GENERIC_WRITE;
    }
    else
    {
        dwDesiredAccess = GENERIC_READ;
    }

    if ( oflag & _O_CREAT )
    {
        dwCreationDisposition = CREATE_ALWAYS;
    }
    else
    {
        dwCreationDisposition = OPEN_EXISTING;
    }

    hFile = CreateFileA(pszFile, 
                        dwDesiredAccess,
                        FILE_SHARE_READ,
                        NULL,
                        dwCreationDisposition,
                        FILE_ATTRIBUTE_NORMAL,
                        NULL);

    return (INT_PTR)hFile;
}

要求

要求 价值
目标平台 窗户
标头 fdi.h

另请参阅

FDICreate