commit | dd7bc3319deb2b77c5d07a51b7d6cd7e11b5beb0 | [log] [tgz] |
---|---|---|
author | The Android Open Source Project <initial-contribution@android.com> | Tue Mar 03 19:32:55 2009 -0800 |
committer | The Android Open Source Project <initial-contribution@android.com> | Tue Mar 03 19:32:55 2009 -0800 |
tree | 2ba8d1a0846d69b18f623515e8d9b5d9fe38b590 | |
parent | e54eebbf1a908d65ee8cf80bab62821c05666d70 [diff] [blame] |
auto import from //depot/cupcake/@135843
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 +