Share

AcFILE::fputc

C++

int fputc(
    wchar_t c
);

Description

Writes a single character out to the file associated with the AcFILE object.

The method writes an ANSI/Unicode character to the output file, based on the current character format. Refer to setCharFormat() for more details on various character formats.

This method returns the character written to the file or -1 to indicate an error condition.

Parameters

Parameters Description
c Input character to be written to file

Links

AcFILE

Previous Declaration

int fputc(

TCHAR c

);

Was this information helpful?