]> git.sesse.net Git - vlc/blob - modules/video_filter/atmo/DmxTools.h
Spell "separate"
[vlc] / modules / video_filter / atmo / DmxTools.h
1 /*
2 * DmxTools.h: functions to convert , or ; separated numbers into an integer array
3  *
4  * See the README.txt file for copyright information and how to reach the author(s).
5  *
6  * $Id$
7  */
8
9 #ifndef _dmxtools_h_
10 #define _dmxtools_h_
11
12 int *ConvertDmxStartChannelsToInt(int numChannels, char *startChannels);
13 char *ConvertDmxStartChannelsToString(int numChannels, int *startChannels);
14 int IsValidDmxStartString(char *startChannels);
15
16 #endif