Spaces:
Running
Running
//======================================================================== | |
// | |
// Win32Console.h | |
// | |
// This file is licensed under the GPLv2 or later | |
// | |
// Copyright (C) 2017 Adrian Johnson <[email protected]> | |
// Copyright (C) 2019 Albert Astals Cid <[email protected]> | |
// Copyright (C) 2019 Oliver Sander <[email protected]> | |
// | |
// To see a description of the changes please see the Changelog file that | |
// came with your tarball or type make ChangeLog if you are building from git | |
// | |
//======================================================================== | |
// UTF-8 Support for win32 console | |
// | |
// Converts argc/argv to UTF-8. Supports UTF-8 stdout/stderr to win32 console. | |
// On other platforms this class is a no-op. | |
// Ensure stdio.h is included before redefining stdio functions. We need to provide | |
// our own declarations for the redefined functions because win32 stdio.h functions | |
// have DLL export decorations. | |
extern "C" { | |
int win32_fprintf(FILE *stream, ...); | |
size_t win32_fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream); | |
} | |
class Win32Console | |
{ | |
public: | |
Win32Console(int *argc, char **argv[]); | |
~Win32Console(); | |
private: | |
int numArgs; | |
char **argList; | |
char **privateArgList; | |
}; | |
// On other platforms this class is a no-op. | |
class Win32Console | |
{ | |
public: | |
Win32Console(int *argc, char ***argv) { } | |
}; | |