Select one of the symbols to view example projects that use it.
 
Outline
#define __K_MODULE_RES_H
Includes
#include <stdlib.h>
#include "GUI.h"
#define GUI_CONST_STORAGE
Exported types
bmplay_pressed;
bmplay_not_pressed;
bmnext_not_pressed;
bmnext_pressed;
bmprevious_not_pressed;
bmprevious_pressed;
bmstop_pressed;
bmstop_not_pressed;
bmadd_pressed;
bmadd_not_pressed;
bmplaylist_pressed;
bmplaylist_not_pressed;
bmopen_pressed;
bmopen_not_pressed;
bmclose_not_pressed;
bmclose_pressed;
bmhide_not_pressed;
bmhide_pressed;
bmpause_pressed;
bmpause_not_pressed;
bmspeaker_not_mute;
bmspeaker_mute;
bmrepeat1;
bmrepeat_all;
bmrepeat_off;
bmwindowfullscreen;
bmwindownofullscreen;
bmsettings_button_not_pressed;
bmsettings_button_pressed;
bmvncstop_pressed;
bmvncstop_not_pressed;
bmstart_pressed;
bmstart_not_pressed;
bmok32;
bmDelete32;
DrawRect3D(int, int, int, int);
Files
loading...
CodeScopeSTM32 Libraries and SamplesSTemWinCore/Inc/k_modules_res.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/** ****************************************************************************** * @file k_modules_res.h * @author MCD Application Team * @brief Header for k_modules_res.c file ****************************************************************************** * @attention * * Copyright (c) 2017 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** *//* ... */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __K_MODULE_RES_H #define __K_MODULE_RES_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include <stdlib.h> #include "GUI.h" #ifndef GUI_CONST_STORAGE #define GUI_CONST_STORAGE const #endif Includes /* Exported types ------------------------------------------------------------*/ extern GUI_CONST_STORAGE GUI_BITMAP bmplay_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmplay_not_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmnext_not_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmnext_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmprevious_not_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmprevious_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmstop_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmstop_not_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmadd_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmadd_not_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmplaylist_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmplaylist_not_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmopen_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmopen_not_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmclose_not_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmclose_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmhide_not_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmhide_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmpause_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmpause_not_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmspeaker_not_mute; extern GUI_CONST_STORAGE GUI_BITMAP bmspeaker_mute; extern GUI_CONST_STORAGE GUI_BITMAP bmrepeat1; extern GUI_CONST_STORAGE GUI_BITMAP bmrepeat_all; extern GUI_CONST_STORAGE GUI_BITMAP bmrepeat_off; extern GUI_CONST_STORAGE GUI_BITMAP bmwindowfullscreen; extern GUI_CONST_STORAGE GUI_BITMAP bmwindownofullscreen; extern GUI_CONST_STORAGE GUI_BITMAP bmsettings_button_not_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmsettings_button_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmvncstop_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmvncstop_not_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmstart_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmstart_not_pressed; extern GUI_CONST_STORAGE GUI_BITMAP bmok32; extern GUI_CONST_STORAGE GUI_BITMAP bmDelete32; Exported types /* Exported constants --------------------------------------------------------*/ /* Exported macros -----------------------------------------------------------*/ /* Exported functions ------------------------------------------------------- */ void DrawRect3D(int x0, int y0, int width, int height); #ifdef __cplusplus }extern "C" { ... } #endif /* ... */ #endif /*__K_MODULE_RES_H */