allow 60 character record names

This commit is contained in:
Marty Kraimer
2002-02-04 15:03:21 +00:00
parent 96b978161d
commit a9f2ae117d
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
field(NAME,DBF_STRING) {
prompt("Record Name")
special(SPC_NOMOD)
size(29)
size(61)
}
field(DESC,DBF_STRING) {
prompt("Descriptor")

View File

@@ -92,7 +92,7 @@
#endif
/* FLDNAME_SZ must be 4 */
#define PVNAME_STRINGSZ 29 /* includes NULL terminator for PVNAME_SZ */
#define PVNAME_STRINGSZ 61 /* includes NULL terminator for PVNAME_SZ */
#define PVNAME_SZ (PVNAME_STRINGSZ - 1) /*Process Variable Name Size */
#define FLDNAME_SZ 4 /*Field Name Size */