Commit e61689e1b9631cde3af3eed4d258a72eaff08f42
1 parent
843e7485
Exists in
master
and in
5 other branches
Pacote devel também depende do aplicativo principal.
Showing
2 changed files
with
14 additions
and
0 deletions
Show diff stats
pw3270.spec.in
| ... | ... | @@ -150,6 +150,7 @@ Revision @PACKAGE_REVISION@ from @PACKAGE_SOURCE@ |
| 150 | 150 | Summary: Devel for 3270 Communication library for %{name} |
| 151 | 151 | Group: Development/Libraries/C and C++ |
| 152 | 152 | Requires: lib3270 = @PACKAGE_VERSION@ |
| 153 | +Requires: pw3270 = @PACKAGE_VERSION@ | |
| 153 | 154 | |
| 154 | 155 | %description -n lib3270-devel |
| 155 | 156 | devel for tn3270 protocol library for %{name} | ... | ... |
src/include/lib3270/filetransfer.h
| ... | ... | @@ -63,6 +63,19 @@ |
| 63 | 63 | #define LIB3270_FT_ALLOCATION_UNITS_MASK LIB3270_FT_ALLOCATION_UNITS_AVBLOCK |
| 64 | 64 | #define LIB3270_FT_RECORD_FORMAT_MASK LIB3270_FT_RECORD_FORMAT_UNDEFINED |
| 65 | 65 | |
| 66 | + typedef enum _lib3270_ft_value | |
| 67 | + { | |
| 68 | + | |
| 69 | + LIB3270_FT_VALUE_LRECL, | |
| 70 | + LIB3270_FT_VALUE_BLKSIZE, | |
| 71 | + LIB3270_FT_VALUE_PRIMSPACE, | |
| 72 | + LIB3270_FT_VALUE_SECSPACE, | |
| 73 | + LIB3270_FT_VALUE_DFT, | |
| 74 | + | |
| 75 | + LIB3270_FT_VALUE_COUNT | |
| 76 | + | |
| 77 | + } LIB3270_FT_VALUE; | |
| 78 | + | |
| 66 | 79 | typedef enum _lib3270_ft_state |
| 67 | 80 | { |
| 68 | 81 | LIB3270_FT_STATE_NONE, /**< No transfer in progress */ | ... | ... |