00001 00007 /* License: new BSD license (see NME.h) */ 00008 00009 #include "NMEPluginRaw.h" 00010 00011 NMEErr NMEPluginRaw(NMEConstText name, NMEInt nameLen, 00012 NMEConstText data, NMEInt dataLen, 00013 NMEContext *context, 00014 void *userData) 00015 { 00016 (void)name; 00017 (void)nameLen; 00018 (void)userData; 00019 00020 if (!NMEAddString(data, dataLen, '\0', context)) 00021 return kNMEErrNotEnoughMemory; 00022 00023 return kNMEErrOk; 00024 }