Steven Edwards wrote:
Hi Rob,
This is the reply from Hervé.
1) Windows doesn't have a isspaceW method, so I tested the iswspace
method, which should be equivalent.
Test program:
#include
#include
int main(int argc, char *argv[])
{
int space;
space = iswspace(0xfeff);
printf("iswsp
Hi Rob,
This is the reply from Hervé.
1) Windows doesn't have a isspaceW method, so I tested the iswspace
method, which should be equivalent.
Test program:
#include
#include
int main(int argc, char *argv[])
{
int space;
space = iswspace(0xfeff);
printf("iswspace(0xfeff) = %s\n", s
Steven Edwards wrote:
Hi Rob,
On 9/24/05, Robert Shearman <[EMAIL PROTECTED]> wrote:
Any time a Zero-Width Non-breaking Space is specifically skipped like
this it is a bug. You should *never* have to do this if you use the
right functions (isspaceW, etc). Is there some other bug lurking tha
Hi Rob,
On 9/24/05, Robert Shearman <[EMAIL PROTECTED]> wrote:
> >-else err = parse_buffer( file, buffer, (WCHAR *)((char *)buffer +
> >size), error_line );
> >+else
> >+{
> >+WCHAR *new_buff = (WCHAR *)buffer;
> >+/* Some UNICODE files may start with the UNICODE marke
Steven Edwards wrote:
Documented here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/setupapi/setup/setupgetinffilelist.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/setupapi/setup/setupgetinfinformation.asp
Changelog:
Hervé Poussineau ([EMAIL PROTECTE