STM32F769IDiscovery  1.00
uDANTE Audio Networking with STM32F7 DISCO board
GUIDRV_Dist.h
Go to the documentation of this file.
1 /*********************************************************************
2 * SEGGER Microcontroller GmbH & Co. KG *
3 * Solutions for real time microcontroller applications *
4 **********************************************************************
5 * *
6 * (c) 1996 - 2015 SEGGER Microcontroller GmbH & Co. KG *
7 * *
8 * Internet: www.segger.com Support: support@segger.com *
9 * *
10 **********************************************************************
11 
12 ** emWin V5.28 - Graphical user interface for embedded applications **
13 All Intellectual Property rights in the Software belongs to SEGGER.
14 emWin is protected by international copyright laws. Knowledge of the
15 source code may not be used to write a similar product. This file may
16 only be used in accordance with the following terms:
17 
18 The software has been licensed to STMicroelectronics International
19 N.V. a Dutch company with a Swiss branch and its headquarters in Plan-
20 les-Ouates, Geneva, 39 Chemin du Champ des Filles, Switzerland for the
21 purposes of creating libraries for ARM Cortex-M-based 32-bit microcon_
22 troller products commercialized by Licensee only, sublicensed and dis_
23 tributed under the terms and conditions of the End User License Agree_
24 ment supplied by STMicroelectronics International N.V.
25 Full source code is available at: www.segger.com
26 
27 We appreciate your understanding and fairness.
28 ----------------------------------------------------------------------
29 File : GUIDRV_Dist.h
30 Purpose : Interface definition for GUIDRV_Dist driver
31 ---------------------------END-OF-HEADER------------------------------
32 */
33 
34 #ifndef GUIDRV_DIST_H
35 #define GUIDRV_DIST_H
36 
37 #if defined(__cplusplus)
38 extern "C" { /* Make sure we have C-declarations in C++ programs */
39 #endif
40 
41 /*********************************************************************
42 *
43 * Display driver
44 */
45 //
46 // Address
47 //
48 extern const GUI_DEVICE_API GUIDRV_Dist_API;
49 
50 //
51 // Macros to be used in configuration files
52 //
53 #if defined(WIN32) && !defined(LCD_SIMCONTROLLER)
54 
55  #define GUIDRV_DIST &GUIDRV_Win_API
56 
57 #else
58 
59  #define GUIDRV_DIST &GUIDRV_Dist_API
60 
61 #endif
62 
63 /*********************************************************************
64 *
65 * Public routines
66 */
67 #if defined(WIN32) && !defined(LCD_SIMCONTROLLER)
68 
69  #define GUIDRV_Dist_AddDriver(pDevice, pDriver, pRect)
70 
71 #else
72 
73  void GUIDRV_Dist_AddDriver(GUI_DEVICE * pDevice, GUI_DEVICE * pDriver, GUI_RECT * pRect);
74 
75 #endif
76 
77 #if defined(__cplusplus)
78 }
79 #endif
80 
81 #endif /* GUIDRV_DIST_H */
82 
83 /*************************** End of file ****************************/
Definition: LCD.h:102
void GUIDRV_Dist_AddDriver(GUI_DEVICE *pDevice, GUI_DEVICE *pDriver, GUI_RECT *pRect)
const GUI_DEVICE_API GUIDRV_Dist_API