113e715b491e876865e752a3a69dd6f347049a488Jeff Brown/*
213e715b491e876865e752a3a69dd6f347049a488Jeff Brown * Copyright (C) 2011 The Android Open Source Project
313e715b491e876865e752a3a69dd6f347049a488Jeff Brown *
413e715b491e876865e752a3a69dd6f347049a488Jeff Brown * Licensed under the Apache License, Version 2.0 (the "License");
513e715b491e876865e752a3a69dd6f347049a488Jeff Brown * you may not use this file except in compliance with the License.
613e715b491e876865e752a3a69dd6f347049a488Jeff Brown * You may obtain a copy of the License at
713e715b491e876865e752a3a69dd6f347049a488Jeff Brown *
813e715b491e876865e752a3a69dd6f347049a488Jeff Brown *      http://www.apache.org/licenses/LICENSE-2.0
913e715b491e876865e752a3a69dd6f347049a488Jeff Brown *
1013e715b491e876865e752a3a69dd6f347049a488Jeff Brown * Unless required by applicable law or agreed to in writing, software
1113e715b491e876865e752a3a69dd6f347049a488Jeff Brown * distributed under the License is distributed on an "AS IS" BASIS,
1213e715b491e876865e752a3a69dd6f347049a488Jeff Brown * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313e715b491e876865e752a3a69dd6f347049a488Jeff Brown * See the License for the specific language governing permissions and
1413e715b491e876865e752a3a69dd6f347049a488Jeff Brown * limitations under the License.
1513e715b491e876865e752a3a69dd6f347049a488Jeff Brown */
1613e715b491e876865e752a3a69dd6f347049a488Jeff Brown
1713e715b491e876865e752a3a69dd6f347049a488Jeff Brown#ifndef _DEBUGGERD_GETEVENT_H
1813e715b491e876865e752a3a69dd6f347049a488Jeff Brown#define _DEBUGGERD_GETEVENT_H
1913e715b491e876865e752a3a69dd6f347049a488Jeff Brown
2013e715b491e876865e752a3a69dd6f347049a488Jeff Brownint init_getevent();
2113e715b491e876865e752a3a69dd6f347049a488Jeff Brownvoid uninit_getevent();
2213e715b491e876865e752a3a69dd6f347049a488Jeff Brownint get_event(struct input_event* event, int timeout);
2313e715b491e876865e752a3a69dd6f347049a488Jeff Brown
2413e715b491e876865e752a3a69dd6f347049a488Jeff Brown#endif // _DEBUGGERD_GETEVENT_H
25