>
> > When is the Trunk version going to be a release candidate ?
>
> There's not really any sort of release process for PoDoFo. Nobody has
> enough time to commit to it that we're clear when we'll reach a certain
> goal. To a large extent it's driven by code quality (release when things
> have stabilised before making large changes), test case results, and
> user needs.


Ok, I understand it is based on a "feeling" to go into the release candidate
traject. If you get this feeling, I want to know :)


> > This is because I downloaded the 1087 build, but this breaks in
> > PdfStream.cpp because of the pdf_long reorganization. So now I'm stuck
> > in the middle of a development cycle with the Borland compilation.
>
> Sorry. I've reverted that - I need to go through and clean up all the
> type usage properly then kill off pdf_long when it's no longer used
> anywhere.


Thanks ! I will download the latest sources.


> It'd be helpful if you could build and run this trivial program on
> Borland and let me know what it outputs.
>
> #include <iostream>
> int main() {
>  std::cout << "ptrdiff_t: " << sizeof(ptrdiff_t) << std::endl;
>  std::cout << "ull int:   " << sizeof(unsigned long long int) <<
>            std::endl;
>  std::cout << "ul int:    " << sizeof(unsigned long int) << std::endl;
>  std::cout << "u int:     " << sizeof(unsigned int) << std::endl;
>  std::cout << "streamoff: " << sizeof(std::streamoff) << std::endl;
>  std::cout << "streampos: " << sizeof(std::streampos) << std::endl;
>  return 0;
> }


The output is (Codegear Rad Studio 2007):
ptrdiff_t: 4
ull int:   8
ul int:    4
u int:     4
streamoff: 8
streampos: 16
off_t:     4


> Also, does borland provide off_t or off64_t ? If so, what size and
> signedness are they?


Well I have found an "off_t" in "sys\types.h" (Codegear Rad Studio 2007):
typedef long  off_t;


>
> If someone with MSVC6 can do the same that'd be really handy.


Microsoft Visual Studio 2008 displays the following:

ptrdiff_t: 4
ull int:   8
ul int:    4
u int:     4
streamoff: 4
streampos: 24
off_t:     4


Regards,
Mirco
------------------------------------------------------------------------------
_______________________________________________
Podofo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/podofo-users

Reply via email to