Hello. It's been a while since I programmed something in PureBasic and I just had the urge to write some PureBasic again :) So here it is. It's basically something like Cron in Linux but for Windows with some little 'extras'. I kept the configuration format similar. No in-programm editor is ...
Why reinventing the wheel? There are a lot of working big number implementations in the net. For example gmp. Here is an example using gmp with PureBasic x86 http://www.filedropper.com/gmp-431-purebasic I have compiled the gmp library with GCC.
Feel free to use it according GNU LGPL v3. For ...
I also have a suggestion for the term usemodule/hidemodule to rename: What about: withmodule/endwithmodule I think the funktionality ist nearly the same, so this could be even more consistent.
Way too old code.. seems the example was broken ;) ;######################################## UseJPEGImageDecoder() ; file$=OpenFileRequester("ouvrir un jpg","e:\","images|*.jpg",0) img1 = LoadImage(#PB_Any, file$) img2 = CopyImage(img1, #PB_Any) img3 = CopyImage(img1, #PB_Any)
Here is some 2 years old code of me for someone who may has better use of :? And because of the error I got at the first try posting it here (Your message contains 82945 characters. The maximum number of allowed characters is 60000.) it is split in 2 parts. Part 1/2: Interface IImageFilter ...
But using PathAddBackslash_() can create a buffer overflow if the string memory is not large enough.
http://msdn.microsoft.com/en-us/library/windows/desktop/bb773561(v=vs.85).aspx Parameters lpszPath [in, out] Type: LPTSTR A pointer to a buffer with a string that represents a path. The size of ...