Partager via


Macro FNFCIOPEN (fci.h)

La macro FNFCIOPEN fournit la déclaration permettant à la fonction de rappel définie par l’application d’ouvrir un fichier dans un contexte FCI.

Syntaxe

void FNFCIOPEN(
  [in]  fn
);

Paramètres

[in] fn

Nom du fichier.

Valeur de retour

None

Remarques

La fonction accepte des paramètres similaires à _open.

Exemples

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

    UNREFERENCED_PARAMETER(pv);
    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);

    if ( hFile == INVALID_HANDLE_VALUE )
    {
        *err = GetLastError();
    }

    return (INT_PTR)hFile;
}

Configuration requise

Condition requise Valeur
Plateforme cible Windows
En-tête fci.h

Voir aussi

FCICréer