| iMatix home page
| << | < | > | >>
SFL Logo SFL
Version 2.11

 

ini_dyn_changed

#include "sflini.h"
Bool
ini_dyn_changed (
    SYMTAB *symtab)

Synopsis

Returns TRUE if the ini file loaded into the specified table has in the meantime been changed. Returns FALSE if not.

Source Code - (sflini.c)

{
    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);
}

| << | < | > | >> iMatix Copyright © 1996-2000 iMatix Corporation