Home | History | Annotate | Download | only in zlib

Lines Matching defs:chars

34     DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM
42 if (chars != 0) {
44 if (chars >= 2
45 && msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') {
46 chars -= 2;
47 msgbuf[chars] = 0;
50 if (chars > sizeof (buf) - 1) {
51 chars = sizeof (buf) - 1;
52 msgbuf[chars] = 0;
55 wcstombs(buf, msgbuf, chars + 1);