Win32 API fix

This commit is contained in:
Andy McFadden 2015-01-04 11:29:18 -08:00
parent 3ee3c9451e
commit 0137d4ef38
1 changed files with 2 additions and 3 deletions

View File

@ -460,8 +460,8 @@ fail:
*
* Returns the number of bytes required to represent stringUNI in MOR.
*/
NUFXLIB_API size_t Nu_ConvertUNIToMOR(const UNICHAR* stringUNI,
char* bufMOR, size_t bufSize)
size_t Nu_ConvertUNIToMOR(const UNICHAR* stringUNI, char* bufMOR,
size_t bufSize)
{
Assert(stringUNI != 0);
@ -551,4 +551,3 @@ UNICHAR* Nu_CopyMORToUNI(const char* stringMOR)
Nu_ConvertMORToUNI(stringMOR, uniBuf, uniLen);
return uniBuf;
}