| 1283 | } |
| 1284 | |
| 1285 | void apply_delete(const char *target) |
| 1286 | { |
| 1287 | addLine(target, "\r\n[VM.DelRegEx]\r\n"); |
| 1288 | |
| 1289 | const char *line = NULL; |
| 1290 | int index = 0; |
| 1291 | for(; (line = iniLine("[delete]", index)) != NULL; index++) |
| 1292 | { |
| 1293 | if(line[0] == 'H' && line[1] == 'K') |
| 1294 | { |
| 1295 | registryDeleteKeyInf(line, target); |
| 1296 | } |
| 1297 | } |
| 1298 | } |
| 1299 | |
| 1300 | BOOL apply_reg_fixes(HWND hwnd) |
| 1301 | { |
no test coverage detected