| 1160 | }; |
| 1161 | |
| 1162 | BOOL infFixer(HWND hwnd) |
| 1163 | { |
| 1164 | (void)hwnd; |
| 1165 | |
| 1166 | char srcfile[MAX_PATH]; |
| 1167 | char dstfile[MAX_PATH]; |
| 1168 | |
| 1169 | strcpy(srcfile, src_path); |
| 1170 | strcat(srcfile, "\\"); |
| 1171 | strcat(srcfile, iniValue("[softgpu]", "drvfile")); |
| 1172 | |
| 1173 | strcpy(dstfile, install_path); |
| 1174 | strcat(dstfile, "\\"); |
| 1175 | strcat(dstfile, iniValue("[softgpu]", "drvfile")); |
| 1176 | |
| 1177 | return liner(srcfile, dstfile, infFixRules); |
| 1178 | } |
| 1179 | |
| 1180 | BOOL ignore_line(char *buf, size_t bufs, size_t fpos) |
| 1181 | { |