summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/icn/icnsupport.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mac/Modules/icn/icnsupport.py')
-rw-r--r--Mac/Modules/icn/icnsupport.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/icn/icnsupport.py b/Mac/Modules/icn/icnsupport.py
index bfdc555..52d075d 100644
--- a/Mac/Modules/icn/icnsupport.py
+++ b/Mac/Modules/icn/icnsupport.py
@@ -7,12 +7,12 @@ import string
# Declarations that change for each manager
MACHEADERFILE = 'Icons.h' # The Apple header file
-MODNAME = 'Icn' # The name of the module
+MODNAME = '_Icn' # The name of the module
OBJECTNAME = 'Icon' # The basic name of the objects used here
KIND = 'Handle' # Usually 'Ptr' or 'Handle'
# The following is *usually* unchanged but may still require tuning
-MODPREFIX = MODNAME # The prefix for module-wide routines
+MODPREFIX = 'Icn' # The prefix for module-wide routines
OBJECTTYPE = OBJECTNAME + KIND # The C type used to represent them
OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner