Added {Get,Set}WindowUserData methods.
diff --git a/Mac/Modules/win/winedit.py b/Mac/Modules/win/winedit.py
index b7c2a97..6a81b9b 100644
--- a/Mac/Modules/win/winedit.py
+++ b/Mac/Modules/win/winedit.py
@@ -96,6 +96,16 @@
)
methods.append(f)
+f = Method(Handle, 'GetWindowDataHandle',
+ (WindowRef, 'theWindow', InMode),
+)
+methods.append(f)
+f = Method(void, 'SetWindowDataHandle',
+ (WindowRef, 'theWindow', InMode),
+ (Handle, 'data', InMode),
+)
+methods.append(f)
+
# These have Mac prefixed to their name in the 3.1 universal headers,
# so we add the old/real names by hand.
f = Method(void, 'CloseWindow',