1 /* 2 * Copyright (c) 2022 HiSilicon (Shanghai) Technologies CO., LIMITED. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 #include "higv_cextfile.h" 16 17 #ifdef __cplusplus 18 #if __cplusplus 19 extern "C" { 20 #endif 21 #endif /* __cplusplus */ 22 23 HIGV_MSG_PROC g_pfunHIGVAppEventFunc[18] = { 24 (HIGV_MSG_PROC)BUTTON_WIN_Onrefresh, 25 (HIGV_MSG_PROC)BUTTON_WIN_Ontimer, 26 (HIGV_MSG_PROC)BUTTON_WIN_Onhide, 27 (HIGV_MSG_PROC)IMAGE_WIN_Onshow, 28 (HIGV_MSG_PROC)IMAGE_WIN_Onhide, 29 (HIGV_MSG_PROC)IMAGE_WIN_Ontimer, 30 (HIGV_MSG_PROC)LABEL_WIN_Onrefresh, 31 (HIGV_MSG_PROC)LABEL_WIN_Ontimer, 32 (HIGV_MSG_PROC)LABEL_WIN_Onhide, 33 (HIGV_MSG_PROC)LISTBOX_WIN_Onshow, 34 (HIGV_MSG_PROC)LISTBOX_WIN_Onrefresh, 35 (HIGV_MSG_PROC)LISTBOX_WIN_Ontimer, 36 (HIGV_MSG_PROC)LISTBOX_WIN_Onhide, 37 (HIGV_MSG_PROC)SCROLLVIEW_WIN_Onshow, 38 (HIGV_MSG_PROC)SCROLLVIEW_WIN_Onrefresh, 39 (HIGV_MSG_PROC)SCROLLVIEW_WIN_Ontimer, 40 (HIGV_MSG_PROC)SCROLLVIEW_WIN_Onhide, 41 (HIGV_MSG_PROC)OnViewMoveListener 42 }; 43 44 45 #ifdef __cplusplus 46 #if __cplusplus 47 } 48 #endif 49 #endif /* __cplusplus */ 50