summaryrefslogtreecommitdiffstats
path: root/libmsi/winstubs/winuser.h
blob: 2241efefd432aee9162777d44f101bdded539358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _WINUSER_
#define _WINUSER_

#include <_mingw_unicode.h>

#define wvsprintf __MINGW_NAME_AW(wvsprintf)
#define wsprintf __MINGW_NAME_AW(wsprintf)

int WINAPI wvsprintfA(LPSTR,LPCSTR,va_list arglist);
int WINAPI wvsprintfW(LPWSTR,LPCWSTR,va_list arglist);
int WINAPIV wsprintfA(LPSTR,LPCSTR,...);
int WINAPIV wsprintfW(LPWSTR,LPCWSTR,...);

#endif