Changeset 2059 for libcaca/trunk/csharp
- Timestamp:
- Nov 25, 2007, 6:13:03 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/csharp/Caca.cs
r2058 r2059 41 41 UNKNOWN = 0x00, 42 42 43 CTRL_A = 0x01, 44 CTRL_B = 0x02, 45 CTRL_C = 0x03, 46 CTRL_D = 0x04, 47 CTRL_E = 0x05, 48 CTRL_F = 0x06, 49 CTRL_G = 0x07, 43 50 BACKSPACE = 0x08, 44 51 TAB = 0x09, 52 CTRL_J = 0x0a, 53 CTRL_K = 0x0b, 54 CTRL_L = 0x0c, 45 55 RETURN = 0x0d, 56 CTRL_N = 0x0e, 57 CTRL_O = 0x0f, 58 CTRL_P = 0x10, 59 CTRL_Q = 0x11, 60 CTRL_R = 0x12, 46 61 PAUSE = 0x13, 62 CTRL_T = 0x14, 63 CTRL_U = 0x15, 64 CTRL_V = 0x16, 65 CTRL_W = 0x17, 66 CTRL_X = 0x18, 67 CTRL_Y = 0x19, 68 CTRL_Z = 0x1a, 47 69 ESCAPE = 0x1b, 48 70 DELETE = 0x7f,
Note: See TracChangeset
for help on using the changeset viewer.