mirror of
https://github.com/microsoft/Microsoft-3D-Movie-Maker.git
synced 2024-11-22 02:12:33 +01:00
70 lines
1.7 KiB
C++
70 lines
1.7 KiB
C++
/* Copyright (c) Microsoft Corporation.
|
|
Licensed under the MIT License. */
|
|
|
|
/***************************************************************************
|
|
Author: ShonK
|
|
Project: Kauai
|
|
Copyright (c) Microsoft Corporation
|
|
|
|
A message sink (MSNK) wrapper around a stdio file.
|
|
|
|
***************************************************************************/
|
|
#include <stdio.h>
|
|
#include "util.h"
|
|
#include "mssio.h"
|
|
ASSERTNAME
|
|
|
|
|
|
/***************************************************************************
|
|
Constructor for a standard I/O message sink.
|
|
***************************************************************************/
|
|
MSSIO::MSSIO(FILE *pfile)
|
|
{
|
|
_pfile = pfile;
|
|
_fError = fFalse;
|
|
}
|
|
|
|
|
|
/***************************************************************************
|
|
Prints a message to stderr.
|
|
***************************************************************************/
|
|
void MSSIO::ReportLine(PSZ psz)
|
|
{
|
|
AssertThis(0);
|
|
AssertSz(psz);
|
|
|
|
#ifdef UNICODE
|
|
_fError |= 0 > fwprintf(_pfile, PszLit("%s\n"), psz);
|
|
#else
|
|
_fError |= 0 > fprintf(_pfile, "%s\n", psz);
|
|
#endif
|
|
}
|
|
|
|
|
|
/***************************************************************************
|
|
Dump a line to stdout.
|
|
***************************************************************************/
|
|
void MSSIO::Report(PSZ psz)
|
|
{
|
|
AssertThis(0);
|
|
AssertSz(psz);
|
|
|
|
#ifdef UNICODE
|
|
_fError |= 0 > fwprintf(_pfile, PszLit("%s"), psz);
|
|
#else
|
|
_fError |= 0 > fprintf(_pfile, "%s", psz);
|
|
#endif
|
|
}
|
|
|
|
|
|
/***************************************************************************
|
|
Return whether there has been an error writing to this message sink.
|
|
***************************************************************************/
|
|
bool MSSIO::FError(void)
|
|
{
|
|
AssertThis(0);
|
|
return _fError;
|
|
}
|
|
|
|
|