Change to the linux kernel coding style
[wmaker-crm.git] / wrlib / NEWS
blobe5b71b0f4d567b0fa5735a7adb70d209a0f18720
2 Sat Apr 21 09:12:09 EEST 2001 -Dan
4 API change
5 ----------
7 To allow a retain/release mechanism to be implemented for RImages, the
8 following new functions were introduced:
10    RImage* RRetainImage(RImage* image);
11    void RReleaseImage(RImage* image);
13 RDestroyImage() is now aliased to RReleaseImage(), but because it's no
14 longer compatible with the new semantics, it was only kept to allow a
15 smoother transition and the ability to run programs that were not updated
16 yet.
18 Do _NOT_ continue to use RDestroyImage(), because it will be removed in a
19 future version. You should start using RReleaseImage() in your code, and
20 also update all your existing programs to use RReleaseImage().
22 Also keep in mind that its name is also misleading: RDestroyImage() no
23 longer destroys images, unless they are not retained in some other place.
25 All existing code will continue to function with the new lib, even if not
26 recompiled, but you are encouraged to update your code to these changes