add_integer: remove callback parameter
[vlc/asuraparaju-public.git] / modules / video_filter / atmo / DmxTools.h
blob0640ca59d8c116d0f8f885e69ee6f736fbbdb3ba
1 /*
2 * DmxTools.h: functions to convert , or ; separated numbers into an integer array
4 * See the README.txt file for copyright information and how to reach the author(s).
6 * $Id$
7 */
9 #ifndef _dmxtools_h_
10 #define _dmxtools_h_
12 int *ConvertDmxStartChannelsToInt(int numChannels, char *startChannels);
13 char *ConvertDmxStartChannelsToString(int numChannels, int *startChannels);
14 int IsValidDmxStartString(char *startChannels);
16 #endif