def genStrUtil (iface): enumGroups = addValuePrefix(ENUM_GROUPS, "GL_") bitfieldGroups = addValuePrefix(BITFIELD_GROUPS, "GL_") prototypeFile = os.path.join(OPENGL_DIR, "gluStrUtilPrototypes.inl") implFile = os.path.join(OPENGL_DIR, "gluStrUtil.inl") writeInlFile(prototypeFile, indentLines(genStrUtilProtos(iface, enumGroups, bitfieldGroups))) writeInlFile(implFile, genStrUtilImpls(iface, enumGroups, bitfieldGroups))