kernel32: MultiByteToWideChar: MB_USEGLYPHCHARS fix

2007-03-25 Thread Andrew O . Shadoura
Hello, Robert! Tuesday, March 13, 2007, 16:35:49, you wrote: RS> Andrew O. Shadoura wrote: >> MB_USEGLYPHCHARS Use glyph characters instead of control characters. >> 'control characters' in this context are _Unicode_ characters below U+0020. >> dst is a pointer

kernel32: MultiByteToWideChar: MB_USEGLYPHCHARS fix

2007-03-25 Thread Andrew O . Shadoura
Hello, Robert! Tuesday, March 13, 2007, 16:35:49, you wrote: RS> Andrew O. Shadoura wrote: >> MB_USEGLYPHCHARS Use glyph characters instead of control characters. >> 'control characters' in this context are _Unicode_ characters below U+0020. >> dst is a pointer

kernel32: MultiByteToWideChar: MB_USEGLYPHCHARS fix

2007-03-13 Thread Andrew O . Shadoura
Hello, Robert! Monday, March 12, 2007, 18:02:59, you wrote: RS> Andrew O. Shadoura wrote: >> break; >> } >> >> +if (flags & MB_USEGLYPHCHARS) { >> +for (i=0; i!=dstlen; i++) >> +if (dst[i]<0x20) dst[i]=glyph_x