Cafu Engine
Win32PrintHelp.hpp
1 /*
2 Cafu Engine, http://www.cafu.de/
3 Copyright (c) Carsten Fuchs and other contributors.
4 This project is licensed under the terms of the MIT license.
5 */
6 
7 /******************************************/
8 /*** Print Help for Windows 32 (Header) ***/
9 /******************************************/
10 
11 #ifndef CAFU_WIN32_PRINTHELP_HPP_INCLUDED
12 #define CAFU_WIN32_PRINTHELP_HPP_INCLUDED
13 
14 
15 const char* GetString(const char* String, ...); ///< Writes a 'variable argument string' into a temporary buffer.
16 
17 void EnqueueString(const char* String, ...); ///< Writes a string into the queue.
18 const char* DequeueString(); ///< Reads a string from the queue. Returns NULL if the queue is empty.
19 
20 // void DequeueAllStrings (Zeiger auf Funktion, die const char* nimmt);
21 // void DequeueToEndOfFile(FileName); // Erster Aufruf schreibt File neu, danach Append
22 
23 #endif