|
| iMatix home page | << | < | > | >> |
SFLVersion 2.11 |
#include "sflini.h"
Bool
ini_dyn_changed (
SYMTAB *symtab)
Returns TRUE if the ini file loaded into the specified table has in the meantime been changed. Returns FALSE if not.
{
char
*filename;
ASSERT (symtab);
/* Date, time, and name of original ini file are in the table */
filename = sym get value (symtab, "filename", NULL);
if (filename
&& file has changed (filename,
sym get number (symtab, "filedate", 0),
sym get number (symtab, "filetime", 0)))
return (TRUE);
else
return (FALSE);
}
| | << | < | > | >> |
|