nyctergatis.com

Contact

Projects
Sysquake Remote Live
NME
PDF
Hike
Sudoku
GifBuilder
jpeglib for Palm OS
MySQL Client
Cross-GCC for Mac OS
NMEPluginRaw.c
Go to the documentation of this file.
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 }
Generated by Doxygen.
Copyright 2007-2013, Yves Piguet.
All rights reserved.