macros.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * macros.h : Macros mapping for the HTTP interface
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2005 the VideoLAN team
  5.  * $Id: cf54260b5ebfd64fa6996eeac67858bb594e9be9 $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  8.  *          Laurent Aimar <fenrir@via.ecp.fr>
  9.  *          Christophe Massiot <massiot@via.ecp.fr>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24.  *****************************************************************************/
  25. #include "http.h"
  26. enum macroType
  27. {
  28.     MVLC_UNKNOWN = 0,
  29.     MVLC_CONTROL,
  30.         MVLC_PLAY,
  31.         MVLC_STOP,
  32.         MVLC_PAUSE,
  33.         MVLC_NEXT,
  34.         MVLC_PREVIOUS,
  35.         MVLC_ADD,
  36.         MVLC_DEL,
  37.         MVLC_EMPTY,
  38.         MVLC_SEEK,
  39.         MVLC_KEEP,
  40.         MVLC_SORT,
  41.         MVLC_MOVE,
  42.         MVLC_VOLUME,
  43.         MVLC_FULLSCREEN,
  44.         MVLC_CLOSE,
  45.         MVLC_SHUTDOWN,
  46.         MVLC_VLM_NEW,
  47.         MVLC_VLM_SETUP,
  48.         MVLC_VLM_DEL,
  49.         MVLC_VLM_PLAY,
  50.         MVLC_VLM_PAUSE,
  51.         MVLC_VLM_STOP,
  52.         MVLC_VLM_SEEK,
  53.         MVLC_VLM_LOAD,
  54.         MVLC_VLM_SAVE,
  55.     MVLC_INCLUDE,
  56.     MVLC_FOREACH,
  57.     MVLC_IF,
  58.     MVLC_RPN,
  59.     MVLC_STACK,
  60.     MVLC_ELSE,
  61.     MVLC_END,
  62.     MVLC_GET,
  63.     MVLC_SET,
  64.         MVLC_INT,
  65.         MVLC_FLOAT,
  66.         MVLC_STRING,
  67.     MVLC_VALUE
  68. };
  69. /* Static mapping of macros type to macro strings */
  70. static const struct
  71. {
  72.     const char *psz_name;
  73.     int  i_type;
  74. }
  75. StrToMacroTypeTab [] =
  76. {
  77.     { "control",    MVLC_CONTROL },
  78.         /* player control */
  79.         { "play",           MVLC_PLAY },
  80.         { "stop",           MVLC_STOP },
  81.         { "pause",          MVLC_PAUSE },
  82.         { "next",           MVLC_NEXT },
  83.         { "previous",       MVLC_PREVIOUS },
  84.         { "seek",           MVLC_SEEK },
  85.         { "keep",           MVLC_KEEP },
  86.         { "fullscreen",     MVLC_FULLSCREEN },
  87.         { "volume",         MVLC_VOLUME },
  88.         /* playlist management */
  89.         { "add",            MVLC_ADD },
  90.         { "delete",         MVLC_DEL },
  91.         { "empty",          MVLC_EMPTY },
  92.         { "sort",           MVLC_SORT },
  93.         { "move",           MVLC_MOVE },
  94.         /* admin control */
  95.         { "close",          MVLC_CLOSE },
  96.         { "shutdown",       MVLC_SHUTDOWN },
  97.         /* vlm control */
  98.         { "vlm_new",        MVLC_VLM_NEW },
  99.         { "vlm_setup",      MVLC_VLM_SETUP },
  100.         { "vlm_del",        MVLC_VLM_DEL },
  101.         { "vlm_play",       MVLC_VLM_PLAY },
  102.         { "vlm_pause",      MVLC_VLM_PAUSE },
  103.         { "vlm_stop",       MVLC_VLM_STOP },
  104.         { "vlm_seek",       MVLC_VLM_SEEK },
  105.         { "vlm_load",       MVLC_VLM_LOAD },
  106.         { "vlm_save",       MVLC_VLM_SAVE },
  107.     { "rpn",        MVLC_RPN },
  108.     { "stack",      MVLC_STACK },
  109.     { "include",    MVLC_INCLUDE },
  110.     { "foreach",    MVLC_FOREACH },
  111.     { "value",      MVLC_VALUE },
  112.     { "if",         MVLC_IF },
  113.     { "else",       MVLC_ELSE },
  114.     { "end",        MVLC_END },
  115.     { "get",        MVLC_GET },
  116.     { "set",        MVLC_SET },
  117.         { "int",            MVLC_INT },
  118.         { "float",          MVLC_FLOAT },
  119.         { "string",         MVLC_STRING },
  120.     /* end */
  121.     { NULL,         MVLC_UNKNOWN }
  122. };