File: macro.h

package info (click to toggle)
aoeui 1.4-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 440 kB
  • ctags: 574
  • sloc: ansic: 6,005; makefile: 76; sh: 11
file content (12 lines) | stat: -rw-r--r-- 328 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
/* Copyright 2007, 2008 Peter Klausler.  See COPYING for license. */
#ifndef MACRO_H
#define MACRO_H

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

#endif