Changed file list filesize to cardinal, also expanded max prompts
This commit is contained in:
parent
ec04cae228
commit
157503f856
|
@ -47,7 +47,7 @@ Const
|
||||||
mysMaxVoteQuestion = 20; // Max number of voting questions
|
mysMaxVoteQuestion = 20; // Max number of voting questions
|
||||||
mysMaxMenuNameLen = 20; // menu name size
|
mysMaxMenuNameLen = 20; // menu name size
|
||||||
mysMaxMenuCmds = 75; // Maximum menu commands per menu
|
mysMaxMenuCmds = 75; // Maximum menu commands per menu
|
||||||
mysMaxThemeText = 489; // Total prompts in theme file
|
mysMaxThemeText = 491; // Total prompts in theme file
|
||||||
|
|
||||||
fn_SemFileEcho = 'echomail.now';
|
fn_SemFileEcho = 'echomail.now';
|
||||||
fn_SemFileNews = 'newsmail.now';
|
fn_SemFileNews = 'newsmail.now';
|
||||||
|
@ -488,7 +488,7 @@ Const
|
||||||
Type
|
Type
|
||||||
RecFileList = Record
|
RecFileList = Record
|
||||||
FileName : String[70];
|
FileName : String[70];
|
||||||
Size : LongInt;
|
Size : Cardinal;
|
||||||
DateTime : LongInt;
|
DateTime : LongInt;
|
||||||
Uploader : String[30];
|
Uploader : String[30];
|
||||||
Flags : Byte;
|
Flags : Byte;
|
||||||
|
|
Loading…
Reference in New Issue