user32: Constify a variable

Andrew Talbot andrew.talbot at talbotville.com
Wed Nov 14 15:40:11 CST 2007


Changelog:
    user32: Constify a variable.

diff --git a/dlls/user32/dde_misc.c b/dlls/user32/dde_misc.c
index 16f36d5..1f4915f 100644
--- a/dlls/user32/dde_misc.c
+++ b/dlls/user32/dde_misc.c
@@ -864,7 +864,7 @@ ATOM	WDML_MakeAtomFromHsz(HSZ hsz)
  * Generally used while receiving a global atom and transforming it
  * into an HSZ
  */
-HSZ	WDML_MakeHszFromAtom(WDML_INSTANCE* pInstance, ATOM atom)
+HSZ	WDML_MakeHszFromAtom(const WDML_INSTANCE* pInstance, ATOM atom)
 {
     WCHAR nameBuffer[MAX_BUFFER_LEN];
 



More information about the wine-patches mailing list