00001 /* 00002 * DmxTools.h: functions to convert , or ; seperatered numbers into an integer array 00003 * 00004 * See the README.txt file for copyright information and how to reach the author(s). 00005 * 00006 * $Id: a714bc973ee992a86be9958967ed5e5e83e581bc $ 00007 */ 00008 00009 #ifndef _dmxtools_h_ 00010 #define _dmxtools_h_ 00011 00012 int *ConvertDmxStartChannelsToInt(int numChannels, char *startChannels); 00013 char *ConvertDmxStartChannelsToString(int numChannels, int *startChannels); 00014 int IsValidDmxStartString(char *startChannels); 00015 00016 #endif
1.5.6