| 3642 | */ |
| 3643 | #ifdef WIN32 |
| 3644 | static void |
| 3645 | checkWin32Codepage(void) |
| 3646 | { |
| 3647 | unsigned int wincp, |
| 3648 | concp; |
| 3649 | |
| 3650 | wincp = GetACP(); |
| 3651 | concp = GetConsoleCP(); |
| 3652 | if (wincp != concp) |
| 3653 | { |
| 3654 | printf(_("WARNING: Console code page (%u) differs from Windows code page (%u)\n" |
| 3655 | " 8-bit characters might not work correctly. See psql reference\n" |
| 3656 | " page \"Notes for Windows users\" for details.\n"), |
| 3657 | concp, wincp); |
| 3658 | } |
| 3659 | } |
| 3660 | #endif |
| 3661 | |
| 3662 |
no outgoing calls
no test coverage detected