|
|
| version 1.6, 2004/01/22 01:10:05 | version 1.7, 2004/02/18 02:03:37 |
|---|---|
| Line 13 static SIZE aboutsize; | Line 13 static SIZE aboutsize; |
| static const char str_np2title[] = "Neko Project II "; | static const char str_np2title[] = "Neko Project II "; |
| static const char np2infostr[] = \ | static const char np2infostr[] = \ |
| "CPU: !CPU !CLOCK\r\n" \ | "CPU: %CPU% %CLOCK%\n" \ |
| "MEM: !MEM1\r\n" \ | "MEM: %MEM1%\n" \ |
| "GDC: !GDC\r\n" \ | "GDC: %GDC%\n" \ |
| "TEXT: !TEXT\r\n" \ | "TEXT: %TEXT%\n" \ |
| "GRPH: !GRPH\r\n" \ | "GRPH: %GRPH%\n" \ |
| "SOUND: !EXSND\r\n" \ | "SOUND: %EXSND%\n" \ |
| "\r\n" \ | "\n" \ |
| "BIOS: !BIOS\r\n" \ | "BIOS: %BIOS%\n" \ |
| "RHYTHM: !RHYTHM\r\n" \ | "RHYTHM: %RHYTHM%\n" \ |
| "\r\n" \ | "\n" \ |
| "SCREEN: !DISP"; | "SCREEN: %DISP%"; |
| static void about_init(HWND hWnd) { | static void about_init(HWND hWnd) { |
| Line 62 static void about_more(HWND hWnd) { | Line 62 static void about_more(HWND hWnd) { |
| char infostr[1024]; | char infostr[1024]; |
| RECT rect; | RECT rect; |
| np2info(infostr, np2infostr, sizeof(infostr)); | np2info(infostr, np2infostr, sizeof(infostr), NULL); |
| SetDlgItemText(hWnd, IDC_NP2INFO, infostr); | SetDlgItemText(hWnd, IDC_NP2INFO, infostr); |
| EnableWindow(GetDlgItem(hWnd, IDC_MORE), FALSE); | EnableWindow(GetDlgItem(hWnd, IDC_MORE), FALSE); |
| GetWindowRect(hWnd, &rect); | GetWindowRect(hWnd, &rect); |