共用方式為


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