Re: setupapi: implement SetupGetInfFileListW and SetupGetInfInformationW

2005-11-16 Thread Robert Shearman
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

Re: setupapi: implement SetupGetInfFileListW and SetupGetInfInformationW

2005-09-28 Thread Steven Edwards
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

Re: setupapi: implement SetupGetInfFileListW and SetupGetInfInformationW

2005-09-27 Thread Robert Shearman
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

Re: setupapi: implement SetupGetInfFileListW and SetupGetInfInformationW

2005-09-26 Thread Steven Edwards
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

Re: setupapi: implement SetupGetInfFileListW and SetupGetInfInformationW

2005-09-24 Thread Robert Shearman
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