Huw Davies : oleaut32: Change CLEANLOCALSTORAGE flag constants to their character

Alexandre Julliard julliard at wine.codeweavers.com
Mon May 8 08:02:19 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 9235ae2ecd9da1974ee96c89c24ae7f83d558d44
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=9235ae2ecd9da1974ee96c89c24ae7f83d558d44

Author: Huw Davies <huw at codeweavers.com>
Date:   Sun May  7 21:26:45 2006 +0100

oleaut32: Change CLEANLOCALSTORAGE flag constants to their character

constant equivalents.  It's now obvious why these were chosen.  Should
be a NOP.

---

 dlls/oleaut32/usrmarshal.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/oleaut32/usrmarshal.c b/dlls/oleaut32/usrmarshal.c
index a26b93d..fd24b4a 100644
--- a/dlls/oleaut32/usrmarshal.c
+++ b/dlls/oleaut32/usrmarshal.c
@@ -85,10 +85,10 @@ static void dump_user_flags(unsigned lon
 
 /* CLEANLOCALSTORAGE */
 
-#define CLS_FUNCDESC  0x66
-#define CLS_LIBATTR   0x6c
-#define CLS_TYPEATTR  0x74
-#define CLS_VARDESC   0x76
+#define CLS_FUNCDESC  'f'
+#define CLS_LIBATTR   'l'
+#define CLS_TYPEATTR  't'
+#define CLS_VARDESC   'v'
 
 unsigned long WINAPI CLEANLOCALSTORAGE_UserSize(unsigned long *pFlags, unsigned long Start, CLEANLOCALSTORAGE *pstg)
 {




More information about the wine-cvs mailing list