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