[Gtk-sharp-list] Full documentation by 1.0

Brian Kerrick Nickel kerrick@cox.net
Tue, 22 Jun 2004 18:41:38 -0700


> I committed some changes to Pixdata this weekend they should at least
> make the api usable though not ideal.

Looks good. (and works!) I must comment though, you removed the need for
a length parameter on one but not the other. It would probably be good
to keep it consistent or have two of each function:

public byte [] Serialize ();
public unsafe bool Deserialize(byte[] stream);

public byte [] Serialize (out uint len);
public unsafe bool Deserialize(uint stream_length, byte[] stream);

> If you find unusable api keep track of it by opening bugs (you can cc me
> on the bugs if you like).  In my experience most of them are relatively
> simple to fix now that the generator is more mature.

Will do.

- Brian