| 428 | } |
| 429 | |
| 430 | void softgpu_info(HWND hwnd, const char *part) |
| 431 | { |
| 432 | (void)hwnd; |
| 433 | char msgbuff[256]; |
| 434 | |
| 435 | if(infobox != INVALID_HANDLE_VALUE) |
| 436 | { |
| 437 | strcpy(msgbuff, "Working: "); |
| 438 | strcat(msgbuff, part); |
| 439 | strcat(msgbuff, "..."); |
| 440 | |
| 441 | SetWindowText(infobox, msgbuff); |
| 442 | } |
| 443 | } |
| 444 | |
| 445 | void softgpu_browse(HWND hwnd) |
| 446 | { |