(self, macro, path, key)
| 101 | self.load_macros(version) |
| 102 | |
| 103 | def set_macro(self, macro, path, key): |
| 104 | for base in HKEYS: |
| 105 | d = read_values(base, path) |
| 106 | if d: |
| 107 | self.macros["$(%s)" % macro] = d[key] |
| 108 | break |
| 109 | |
| 110 | def load_macros(self, version): |
| 111 | vsbase = r"Software\Microsoft\VisualStudio\%0.1f" % version |
no test coverage detected