Vitaly Lipatov lav@etersoft.ru writes:
+/***********************************************************************
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");
+}
If you don't know the parameters you should leave the function as stub in the spec file, at least this way it will crash cleanly. Also you have to make the dll handle the PREATTACH value to prevent it from getting loaded if native is present. Look at how other stub dlls are doing it.