d3dut

annotate src/logmsg.h @ 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 #ifndef LOGMSG_H_
nuclear@0 19 #define LOGMSG_H_
nuclear@0 20
nuclear@0 21 void fatal_error(const char *fmt, ...);
nuclear@0 22 void warning(const char *fmt, ...);
nuclear@0 23
nuclear@1 24 #endif // LOGMSG_H_