Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
492 B

#ifndef _TEST_H
#define _TEST_H
#define BUFSIZE 2048
typedef enum {
Unknown = 0, Stopped, Paused, Playing, Scanning, FF, FR, Slow, VFF, VFR,
Chapter, Time, FullScreen, Title, CC, Menu, Up, Down, Left, Right,
NormalSpeed, DoubleSpeed, Eject, AudioVolume, Help, Angle
} CURRENT_STATE;
typedef struct test_case_node_struct {
char *line;
} TEST_CASE_NODE;
typedef struct test_case_list_struct {
struct test_case_node_struct *T_CASE[1024];
} TEST_CASE_LIST;
#endif