File: macro.h

package info (click to toggle)
aoeui 1.1.1-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 348 kB
  • ctags: 487
  • sloc: ansic: 5,248; makefile: 67
file content (14 lines) | stat: -rw-r--r-- 318 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef MACRO_H
#define MACRO_H

struct macro *macro_record(void);
int macro_end_recording(unsigned chop);
int macro_play(struct macro *, int repeat);
void macros_abort(void);
void macro_free(struct macro *);
int macro_getch(void);

#define FUNCTION_KEYS 12
extern struct macro *function_key[FUNCTION_KEYS+1];

#endif