d3dut

annotate src/logmsg.cc @ 1:242535442d04

added license, readme, and gpl headers
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 22 Jun 2013 10:43:12 +0300
parents ecc040281dc9
children
rev   line source
nuclear@1 1 /*
nuclear@1 2 D3DUT - Simple window creation and event handling for Direct3D 11 applications.
nuclear@1 3 Copyright (C) 2013 John Tsiombikas <nuclear@member.fsf.org>
nuclear@1 4
nuclear@1 5 This program is free software: you can redistribute it and/or modify
nuclear@1 6 it under the terms of the GNU Lesser General Public License as published by
nuclear@1 7 the Free Software Foundation, either version 3 of the License, or
nuclear@1 8 (at your option) any later version.
nuclear@1 9
nuclear@1 10 This program is distributed in the hope that it will be useful,
nuclear@1 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
nuclear@1 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
nuclear@1 13 GNU Lesser General Public License for more details.
nuclear@1 14
nuclear@1 15 You should have received a copy of the GNU Lesser General Public License
nuclear@1 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
nuclear@1 17 */
nuclear@0 18 #include <stdio.h>
nuclear@0 19 #include <stdlib.h>
nuclear@0 20 #include <stdarg.h>
nuclear@0 21 #include "logmsg.h"
nuclear@0 22
nuclear@0 23 void fatal_error(const char *fmt, ...)
nuclear@0 24 {
nuclear@0 25 fputs("D3DUT FATAL ERROR: ", stderr);
nuclear@0 26
nuclear@0 27 va_list ap;
nuclear@0 28 va_start(ap, fmt);
nuclear@0 29 vfprintf(stderr, fmt, ap);
nuclear@0 30 va_end(ap);
nuclear@0 31
nuclear@0 32 abort();
nuclear@0 33 }
nuclear@0 34
nuclear@0 35 void warning(const char *fmt, ...)
nuclear@0 36 {
nuclear@0 37 fputs("D3DUT WARNING: ", stderr);
nuclear@0 38
nuclear@0 39 va_list ap;
nuclear@0 40 va_start(ap, fmt);
nuclear@0 41 vfprintf(stderr, fmt, ap);
nuclear@0 42 va_end(ap);
nuclear@1 43 }