1/*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License as
4 * published by the Free Software Foundation; either version 2 of
5 * the License, or (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
15 * MA 02111-1307 USA
16 */
17/*
18 * This is the interface to a routine to notify the rc driver that it should
19 * take some action.
20 *
21 * Copyright 2004, ASUSTeK Inc.
22 * All Rights Reserved.
23 *
24 * This is UNPUBLISHED PROPRIETARY SOURCE CODE of ASUSTeK Inc.;
25 * the contents of this file may not be disclosed to third parties, copied
26 * or duplicated in any form, in whole or in part, without the prior
27 * written permission of ASUSTeK Inc..
28 */
29
30#ifndef NOTIFY_RC_H
31#define NOTIFY_RC_H
32
33#include <typedefs.h>
34
35
36extern int notify_rc(const char *event_name);
37extern int notify_rc_after_wait(const char *event_name);
38extern int notify_rc_and_wait(const char *event_name);
39extern int notify_rc_and_wait_1min(const char *event_name);
40extern int notify_rc_and_wait_2min(const char *event_name);
41
42
43#endif /* NOTIFY_RC_H */
44