/* @(#) $Id: check_rc_winpolicy.c,v 1.4 2007/07/21 23:50:56 dcid Exp $ */ /* Copyright (C) 2006-2007 Daniel B. Cid * All right reserved. * * This program is a free software; you can redistribute it * and/or modify it under the terms of the GNU General Public * License (version 2) as published by the FSF - Free Software * Foundation */ #include "shared.h" #include "rootcheck.h" /* check_rc_winaudit: * Read the file pointer specified (winpolicy) * and check if the configured file is there */ void check_rc_winaudit(FILE *fp, void *p_list) { debug1("%s: DEBUG: Starting on check_rc_winaudit", ARGV0); rkcl_get_entry(fp, "Windows Audit:", p_list); } /* check_rc_winmalware: * Read the file pointer specified (winpolicy) * and check if the configured file is there */ void check_rc_winmalware(FILE *fp, void *p_list) { debug1("%s: DEBUG: Starting on check_rc_winmalware", ARGV0); rkcl_get_entry(fp, "Windows Malware:", p_list); } /* check_rc_winapps: * Read the file pointer specified (winpolicy) * and check if the configured file is there */ void check_rc_winapps(FILE *fp, void *p_list) { debug1("%s: DEBUG: Starting on check_rc_winapps", ARGV0); rkcl_get_entry(fp, "Application Found:", p_list); } /* EOF */