summaryrefslogtreecommitdiffstats
path: root/mpeglib/example/yaf/yafcore/yafCommand.defs
blob: ab2559dfd7d9318143b687df6878b1b887004410 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
  definition file for basic yaf commands
  Copyright (C) 1998  Martin Vogt

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU Library General Public License as published by
  the Free Software Foundation.

  For more information look at the file COPYRIGHT in this package

 */




#ifndef __YAF_COMMAND_DEFS
#define __YAF_COMMAND_DEFS

#include "commandTable.h"   // defines CommandDesc-Struct...

// Command Numbers

#define _YAF_I_COMMAND 		1			
#define _YAF_I_MSG     		2
#define _YAF_I_HELP    		3
#define _YAF_I_RUNTIME 		4
#define _YAF_I_QUIT    		5
#define _YAF_I_PING    		6
#define _YAF_I_PROTOCOL		7
#define _YAF_I_NOPROTOCOL	8
#define _YAF_I_WHATIS		9
#define _YAF_I_SELECT_A_LAYER   10
#define _YAF_I_SELECT_V_LAYER   11
#define _YAF_I_PLAYTIME		12
#define _YAF_I_WRITE		13








#define _YAF_START 40



// The commands as String. The Syntax is :
// 

//  { lexternalUse,lReturnMsg,longName,shortName,number,helpText }
// 
// lexternal use ist true when the text should be written when 
// user enters "help"


#ifdef _USE_YAF_STRUC

static struct CommandDescriptionStruct yafCommands[]={

  {0,1,"Command","",_YAF_I_COMMAND,"internal identifier"},
  {0,1,"Msg","",_YAF_I_MSG,"identifier for unstructured String"},
  {1,1,"help","h",_YAF_I_HELP,"show this help"},
  {1,1,"ping","",_YAF_I_PING,"command tests if client is alive"},
  {1,1,"runtime","r",_YAF_I_RUNTIME,"runtime [on|off] shows runtime infos"},
  {1,1,"protocol","",_YAF_I_NOPROTOCOL,"internal protocol wrapper on [def]"},
  {1,1,"noprotocol","",_YAF_I_PROTOCOL,"internal protocol wrapper off"},
  {1,1,"whatis" ,"",_YAF_I_WHATIS,"gives a short introduction" },
  {1,1,"audioLayer","", _YAF_I_SELECT_A_LAYER,
	"selects audio layer from stream [0..31]"},
  {1,1,"videoLayer" ,"", _YAF_I_SELECT_V_LAYER,
	"selects video layer from stream [0..15]" },
  {1,1,"playtime","", _YAF_I_PLAYTIME,
  	"retrives the current playtime" },
  {1,1,"write","", _YAF_I_WRITE,
  	"writes stream to disk [on|off] default[off]" },
  {1,1,"quit","q",_YAF_I_QUIT,"ends program"}

};
#endif


// How much Commands are in the Array :
#define YAFCOMMANDS_SIZE 13



#endif