diff options
author | Michael Brown <mcb30@ipxe.org> | 2024-04-15 15:59:49 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2024-04-15 15:59:49 +0100 |
commit | 40b51124400df9cb0c57512ff93ac21827d5bac0 (patch) | |
tree | fefb7a187eda31347f14f7317b29ed6427a271e2 /src/include/ipxe/errfile.h | |
parent | 27ecc36c0bef804d12dbf8c29684c8e8159c8e47 (diff) | |
download | ipxe-40b51124400df9cb0c57512ff93ac21827d5bac0.tar.gz |
[hci] Use dynamically allocated buffers for editable strings
Editable strings currently require a fixed-size buffer, which is
inelegant and limits the potential for creating interactive forms with
a variable number of edit box widgets.
Remove this limitation by switching to using a dynamically allocated
buffer for editable strings and edit box widgets.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/errfile.h')
-rw-r--r-- | src/include/ipxe/errfile.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/ipxe/errfile.h b/src/include/ipxe/errfile.h index 0ab37230a..96981dd06 100644 --- a/src/include/ipxe/errfile.h +++ b/src/include/ipxe/errfile.h @@ -416,6 +416,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #define ERRFILE_efi_settings ( ERRFILE_OTHER | 0x005e0000 ) #define ERRFILE_x25519 ( ERRFILE_OTHER | 0x005f0000 ) #define ERRFILE_des ( ERRFILE_OTHER | 0x00600000 ) +#define ERRFILE_editstring ( ERRFILE_OTHER | 0x00610000 ) /** @} */ |