Vitaly Lipatov wrote:
+/***********************************************************************
GetUName [ 2000 / XP ]
- undocumented fn: GetUName()
- The information is not available by API. The thing MS did
- here -- parsing the data from nameslist.txt in the Unicode Character
- Database (UCD).
- See
- RETURNS
- unknown
- */
+void WINAPI GetUName(void) +{
- FIXME("stub\n");
+}
You should add a test for this function and document at least the number of parameters of the function. Presumably it should take some parameters or return something, or the DLL is useless. If the former is incorrect then the stack will be trashed after the call.