After the creation of dlls/user/tests/msg.c I'm seeing the following
msg.c:128: warning: `WmMouseMoveInNonClientAreaSeq' defined but not used msg.c:135: warning: `WmMouseMoveInClientAreaSeq' defined but not used msg.c:142: warning: `WmDragTitleBarSeq' defined but not used msg.c:154: warning: `WmDragThinkBordersBarSeq' defined but not used msg.c:183: warning: `WmClickInactiveButtonSeq' defined but not used msg.c:204: warning: `WmReparentButtonSeq' defined but not used msg.c:217: warning: `WmCreateModalDialogSeq' defined but not used msg.c:248: warning: `WmDestroyModalDialogSeq' defined but not used msg.c:271: warning: `WmCreateModalDialogResizeSeq' defined but not used
when using GCC 3.3.
Are you planning to address this, or should "static" be removed from these?
Gerald
On October 2, 2003 04:13 am, Gerald Pfeifer wrote:
Are you planning to address this, or should "static" be removed from these?
Please don't remove them, hopefully we'll eventually have tests using them...
On Thu, 2 Oct 2003, Dimitrie O. Paun wrote:
Are you planning to address this, or should "static" be removed from these?
Please don't remove them, hopefully we'll eventually have tests using them...
Note that I did not suggest to remove the functions, just to remove "static" from their definitions (or we could put them in #if 0...#endif).
Currently, building Wine gives the following warnings of this kind:
rtlstr.c:552: warning: `test_RtlUpcaseUnicodeChar' defined but not used rtlstr.c:578: warning: `test_RtlUpcaseUnicodeString' defined but not used rtlstr.c:629: warning: `test_RtlDowncaseUnicodeString' defined but not used msg.c:128: warning: `WmMouseMoveInNonClientAreaSeq' defined but not used msg.c:135: warning: `WmMouseMoveInClientAreaSeq' defined but not used msg.c:142: warning: `WmDragTitleBarSeq' defined but not used msg.c:154: warning: `WmDragThinkBordersBarSeq' defined but not used msg.c:183: warning: `WmClickInactiveButtonSeq' defined but not used msg.c:204: warning: `WmReparentButtonSeq' defined but not used msg.c:217: warning: `WmCreateModalDialogSeq' defined but not used msg.c:248: warning: `WmDestroyModalDialogSeq' defined but not used msg.c:271: warning: `WmCreateModalDialogResizeSeq' defined but not used
Gerald
On October 2, 2003 10:44 am, Gerald Pfeifer wrote:
Note that I did not suggest to remove the functions, just to remove "static" from their definitions (or we could put them in #if 0...#endif).
Currently, building Wine gives the following warnings of this kind:
It's OK, I know that, but I'd rather have the warning as a constant reminder that there is stuff to do there.