Typedefs |
|
typedef RpToonPaint *( | RpToonPaintCallBack )(RpToonPaint *paint, void *data) |
Functions |
|
RpToonPaintDictionary * | RpToonPaintDictionaryCreate (void) |
void | RpToonPaintDictionaryDestroy (RpToonPaintDictionary *paintDictionary) |
RpToonPaintDictionary * | RpToonPaintDictionaryAddPaint (RpToonPaintDictionary *paintDictionary, RpToonPaint *paint) |
void | RpToonPaintDictionaryRemovePaint (RpToonPaintDictionary *paintDictionary, RpToonPaint *paint) |
RpToonPaint * | RpToonPaintDictionaryFindNamedPaint (const RpToonPaintDictionary *paintDictionary, const RwChar *name) |
void | RpToonPaintDictionaryForAllPaints (const RpToonPaintDictionary *paintDictionary, RpToonPaintCallBack *paintCB, void *data) |
RpToonPaintDictionary * | RpToonPaintDictionaryStreamRead (RwStream *stream) |
const RpToonPaintDictionary * | RpToonPaintDictionaryStreamWrite (const RpToonPaintDictionary *paintDictionary, RwStream *stream) |
|
RpToonPaintCallBack represents the function called from RpToonPaintDictionaryForAllPaints for all paints in a given paint dictionary. This function should return the current paint to indicate success. The callback may return NULL to terminate further callbacks on the paint dictionary.
|
|
RpToonPaintDictionaryAddPaint is used to add a RpToonPaint to a RpToonPaintDictionary. RpToonPaintAddRef is called on the paint.
|
|
RpToonPaintDictionaryCreate is used to create a new empty RpToonPaintDictionary.
|
|
RpToonPaintDictionaryDestroy is used to destroy an RpToonPaintDictionary. RpToonPaintDestroy is called on each paint in paintDictionary.
|
|
RpToonPaintDictionaryFindNamedPaint is used to find a RpToonPaint with a particular name in a RpToonPaintDictionary.
|
|
RpToonPaintDictionaryForAllPaints is used to iterate over all the RpToonPaint objects in a RpToonPaintDictionary.
|
|
RpToonPaintDictionaryRemovePaint is used to remove a RpToonPaint from a RpToonPaintDictionary. RpToonPaintDestroy is called on the paint to decrement its reference count.
|
|
RpToonPaintDictionaryStreamRead is used to read an paint dictionary and all the RpToonPaint objects in containts from the specified binary stream.
|
|
RpToonPaintDictionaryStreamWrite is used to write the specified paint dictionary and all its RpToonPaint objects to the given binary stream. The stream must have been opened prior to this function call.
|
Converted from CHM to HTML with chm2web Pro 2.85 (unicode) |