Merge SLNKDWF64 branch

svn path=/Slnkdwf/trunk/; revision=23911
This commit is contained in:
Jos Groot Lipman
2015-01-21 12:09:31 +00:00
parent fe4815fdf3
commit 0e37d774d2
298 changed files with 126725 additions and 11332 deletions

View File

@@ -0,0 +1,28 @@
//
// Emit.h
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
#pragma once
#include "stdafx.h"
class CXMLElement;
void EmitError(UINT uID, ...);
void EmitErrorHr(HRESULT hr);
void EmitWarning(UINT uID, ...);
void Emit(UINT uID, ...);
bool SetEmitWarnings(bool bWarn);
void EmitCmdLineError(UINT uID, ...);
void EmitCmdLineWarning(UINT uID, ...);
void EmitFileWarning(UINT uID, LPCWSTR wszFile, int nLine, int nCol, UINT uIDExtra, ...);
void EmitFileError(UINT uID, LPCWSTR wszFile, int nLine, int nCol, UINT uIDExtra, ...);
void EmitFileWarning(UINT uID, CXMLElement *pElem, UINT uIDExtra, ...);
void EmitFileError(UINT uID, CXMLElement *pElem, UINT uIDExtra, ...);