Commit baf91c94b8feff353e6f61284e90de82bc9742aa
1 parent
b77b7713
Exists in
master
and in
3 other branches
Addin APL chars 0xF1 to 0xF9 on test pattern.
Showing
1 changed file
with
13 additions
and
0 deletions
Show diff stats
src/core/screen.c
| @@ -864,6 +864,8 @@ LIB3270_EXPORT int lib3270_testpattern(H3270 *hSession) | @@ -864,6 +864,8 @@ LIB3270_EXPORT int lib3270_testpattern(H3270 *hSession) | ||
| 864 | 0x00 | 864 | 0x00 |
| 865 | }; | 865 | }; |
| 866 | 866 | ||
| 867 | + // http://www.prycroft6.com.au/misc/3270eds.html | ||
| 868 | + // http://www.prycroft6.com.au/graphics/sym0and1.gif | ||
| 867 | static const unsigned char cg_pat[] = | 869 | static const unsigned char cg_pat[] = |
| 868 | { | 870 | { |
| 869 | 0x8c, // CG 0xf7, less or equal "≤" | 871 | 0x8c, // CG 0xf7, less or equal "≤" |
| @@ -883,6 +885,17 @@ LIB3270_EXPORT int lib3270_testpattern(H3270 *hSession) | @@ -883,6 +885,17 @@ LIB3270_EXPORT int lib3270_testpattern(H3270 *hSession) | ||
| 883 | 0xc4, // CG 0xa3, LL corner | 885 | 0xc4, // CG 0xa3, LL corner |
| 884 | 0xd4, // CG 0xac, LR corner | 886 | 0xd4, // CG 0xac, LR corner |
| 885 | 887 | ||
| 888 | + 0xf0, | ||
| 889 | + 0xf1, | ||
| 890 | + 0xf2, | ||
| 891 | + 0xf3, | ||
| 892 | + 0xf4, | ||
| 893 | + 0xf5, | ||
| 894 | + 0xf6, | ||
| 895 | + 0xf7, | ||
| 896 | + 0xf8, | ||
| 897 | + 0xf9, | ||
| 898 | + | ||
| 886 | 0x00 | 899 | 0x00 |
| 887 | 900 | ||
| 888 | }; | 901 | }; |