TuttleOFX  1
ofxMemory.h File Reference
#include "ofxCore.h"
#include <string.h>
Include dependency graph for ofxMemory.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  OfxMemorySuiteV1
 The OFX suite that implements general purpose memory management. More...

Defines

#define kOfxMemorySuite   "OfxMemorySuite"

Typedefs

typedef struct OfxMemorySuiteV1 OfxMemorySuiteV1
 The OFX suite that implements general purpose memory management.

Detailed Description

This file contains the API for general purpose memory allocation from a host.

Definition in file ofxMemory.h.


Define Documentation

#define kOfxMemorySuite   "OfxMemorySuite"

Typedef Documentation

The OFX suite that implements general purpose memory management.

Use this suite for ordinary memory management functions, where you would normally use malloc/free or new/delete on ordinary objects.

For images, you should use the memory allocation functions in the image effect suite, as many hosts have specific image memory pools.

Note:
C++ plugin developers will need to redefine new and delete as skins ontop of this suite.