commit | 4f6e8d7a00cbeda1e70cc15be9c4af1018bdad53 | [log] [tgz] |
---|---|---|
author | The Android Open Source Project <initial-contribution@android.com> | Tue Oct 21 07:00:00 2008 -0700 |
committer | The Android Open Source Project <initial-contribution@android.com> | Tue Oct 21 07:00:00 2008 -0700 |
tree | 54fd1b2695a591d2306d41264df67c53077b752c |
Initial Contribution
diff --git a/adb/history.h b/adb/history.h new file mode 100755 index 0000000..ef86ad9 --- /dev/null +++ b/adb/history.h
@@ -0,0 +1,13 @@ +#ifndef _HISTORY_H_ +#define _HISTORY_H_ + +#define SH_ARROW_ANY "\x1b\x5b" +#define SH_ARROW_UP '\x41' +#define SH_ARROW_DOWN '\x42' +#define SH_ARROW_RIGHT '\x43' +#define SH_ARROW_LEFT '\x44' +#define SH_DEL_CHAR '\x7F' +#define SH_BLANK_CHAR '\x20' + +#endif +