16 lines
266 B
C
16 lines
266 B
C
|
|
#include <stdio.h>
|
|
#include <winpr/crt.h>
|
|
#include <winpr/windows.h>
|
|
|
|
/*
|
|
* Conversion *from* Unicode
|
|
* WideCharToMultiByte: http://msdn.microsoft.com/en-us/library/windows/desktop/dd374130/
|
|
*/
|
|
|
|
int TestWideCharToMultiByte(int argc, char* argv[])
|
|
{
|
|
return 0;
|
|
}
|
|
|