Re: [fpc-devel] Base64 decoding stream in the FCL

2007-02-12 Thread Bram Kuijvenhoven
Dean Zobec wrote: If you test it, please try adding tests in fpcunit format. What would be a good starting point to learn about how to use fpcunit? (I haven't used it before) The sources and examples :-) In particular the fcl/fpcunit/exampletests/moneytest.pp testing the money.pp example clas

Re: [fpc-devel] Base64 decoding stream in the FCL

2007-02-12 Thread Dean Zobec
>>> If you test it, please try adding tests in fpcunit format. >> What would be a good starting point to learn about how to use fpcunit? (I >> haven't used it before) > > The sources and examples :-) In particular the fcl/fpcunit/exampletests/moneytest.pp testing the money.pp example classes is

RE: [fpc-devel] procedure ... message

2007-02-12 Thread peter green
> What does the compiler do when translating "procedure ... message" ? > > I need to know this as I want to create a non-GUI workalike of the > TApplication class that can do things like "TTimer" > "TThread.Synchronize", Message events, etc, using Windows messages in > Windows (for testing pur

Re: [fpc-devel] Base64 decoding stream in the FCL

2007-02-12 Thread Michael Van Canneyt
On Mon, 12 Feb 2007, Bram Kuijvenhoven wrote: > Hi Michael, > Thanks for your reply! > > I have done a little more research; details are below. > > Michael Van Canneyt wrote: > > On Mon, 12 Feb 2007, Bram Kuijvenhoven wrote: > > > The Base64 decoding stream in the Base64 unit in the FCL appea

Re: [fpc-devel] Base64 decoding stream in the FCL

2007-02-12 Thread Bram Kuijvenhoven
Hi Michael, Thanks for your reply! I have done a little more research; details are below. Michael Van Canneyt wrote: On Mon, 12 Feb 2007, Bram Kuijvenhoven wrote: The Base64 decoding stream in the Base64 unit in the FCL appears to be broken. In particular - it does not handle whitespace (or

Re: [fpc-devel] Base64 decoding stream in the FCL

2007-02-12 Thread Michael Van Canneyt
On Mon, 12 Feb 2007, Bram Kuijvenhoven wrote: > Hi list! > > The Base64 decoding stream in the Base64 unit in the FCL appears to be broken. > In particular > - it does not handle whitespace (or other characters not from the bas64 > alphabet), and It was not designed to do this. > - Read does

[fpc-devel] Base64 decoding stream in the FCL

2007-02-12 Thread Bram Kuijvenhoven
Hi list! The Base64 decoding stream in the Base64 unit in the FCL appears to be broken. In particular - it does not handle whitespace (or other characters not from the bas64 alphabet), and - Read does not return the correct number of bytes read when at the end of the stream, and - the meaning

[fpc-devel] procedure ... message

2007-02-12 Thread Michael Schnell
What does the compiler do when translating "procedure ... message" ? I need to know this as I want to create a non-GUI workalike of the TApplication class that can do things like "TTimer" "TThread.Synchronize", Message events, etc, using Windows messages in Windows (for testing purpose) and sy