mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
c71475e3bb
svn path=/trunk/; revision=58290
21 lines
556 B
C
21 lines
556 B
C
/*
|
|
* PROJECT: ReactOS api tests
|
|
* LICENSE: GPLv2+ - See COPYING in the top level directory
|
|
* PURPOSE: Test for MultiByteToWideChar
|
|
* PROGRAMMER: Mike "tamlin" Nordell
|
|
*/
|
|
|
|
#include <wine/test.h>
|
|
#include <winnls.h>
|
|
|
|
|
|
START_TEST(MultiByteToWideChar)
|
|
{
|
|
int ret;
|
|
|
|
ret = MultiByteToWideChar(CP_UTF8, 0, "a", sizeof("a"), 0, 0);
|
|
ok(ret == 2, "ret should be 2, is %d\n", ret);
|
|
|
|
ret = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, "a", sizeof("a"), 0, 0);
|
|
ok(ret == 2, "ret should be 2, is %d\n", ret);
|
|
}
|