print.c | 49 char ascbuf[2048]; local in function:debug_printf 61 n = wcstombs(ascbuf, buffer, sizeof(ascbuf)); 63 if (ascbuf[n - 1] == 0x0a) { 64 ascbuf[n - 1] = 0x0d; 65 ascbuf[n + 0] = 0x0a; 66 ascbuf[n + 1] = 0x00; 69 WriteFile(debug_log, ascbuf, n, &n, NULL);
|