The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 906 - File: showthread.php PHP 7.2.24-0ubuntu0.18.04.17 (Linux)
File Line Function
/showthread.php 906 errorHandler->error



Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Declaration of swprintf for MinGW users.
someone972 Offline
Member

Posts: 57
Threads: 4
Joined: May 2012
Reputation: 1
#1
Declaration of swprintf for MinGW users.

In case anyone decides to use MinGW to compile HPL1/OALWrapper, you may have found that the version of swprintf provided with MinGW takes three arguments, omitting the size of the buffer. The four argument function exists in MinGW, but it is under a different name. To remedy this I created the following header:
PHP Code: (Select All)
#ifndef MINGW_FUNCTION_DECL_H
#define MINGW_FUNCTION_DECL_H

#ifdef __MINGW32__
#include <cstring>
#include <cstdarg>
#include <cwchar>

inline int swprintf(wchar_t *bufsize_t length, const wchar_t *fmt, ...)
{
    
va_list args;
    
int i;

    
va_start(argsfmt);
    
i=_vsnwprintf(buf,length,fmt,args);
    
va_end(args);
    return 
i;
};

inline int vswprintf(wchar_t *bufsize_t length, const wchar_t *fmtva_list args)
{
    return 
_vsnwprintf(buf,length,fmt,args);
}

#endif //__MINGW32__
#endif //MINGW_FUNCTION_DECL_H 
Then anywhere that the functions are used, I add the following to the header file:
PHP Code: (Select All)
#ifdef __MINGW32__
    #include "../MinGW_function_declarations.hpp" //May be a different path depending on project.
#endif 

Feel free to provide feedback or criticisms of my method. Hopefully this will be of use to anyone using MinGW.
05-11-2012, 02:09 AM
Find


Messages In This Thread
Declaration of swprintf for MinGW users. - by someone972 - 05-11-2012, 02:09 AM



Users browsing this thread: 1 Guest(s)