diff options
Diffstat (limited to 'include/hal-device-input-interface-1.h')
-rw-r--r-- | include/hal-device-input-interface-1.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/hal-device-input-interface-1.h b/include/hal-device-input-interface-1.h new file mode 100644 index 0000000..639c160 --- /dev/null +++ b/include/hal-device-input-interface-1.h @@ -0,0 +1,33 @@ +/* + * Copyright (c) 2022 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __HAL_DEVICE_INPUT_INTERFACE_H__ +#define __HAL_DEVICE_INPUT_INTERFACE_H__ + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct _hal_backend_device_input_funcs { + /* Control input device event */ + int (*set_event_state)(int input_device_id, int on); + int (*get_event_state)(int input_device_id, int* on); +} hal_backend_device_input_funcs; + +#ifdef __cplusplus +} +#endif +#endif /* __HAL_DEVICE_INPUT_INTERFACE_H__ */ |