Another round of const correctness fixes.

diff --git a/windows/spy.c b/windows/spy.c
index 1b1a420..d765ef5 100644
--- a/windows/spy.c
+++ b/windows/spy.c
@@ -1316,7 +1316,7 @@
 {
 const WCHAR      *classname;  /* class name to match                  */
 const USER_MSG   *classmsg;   /* pointer to first USER_MSG for class  */
-      USER_MSG   *lastmsg;    /* pointer to last USER_MSG for class   */
+const USER_MSG   *lastmsg;    /* pointer to last USER_MSG for class   */
 } CONTROL_CLASS;
 
 #define USM(a,b) { #a ,a,b}