blob: 5ad6bf37c9880820662a3d6018d1e652f24a677e (
plain)
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
|
/*
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
* http://ugfx.org/license.html
*/
/**
* @file include/gqueue/options.h
* @brief GQUEUE - Queue options header file.
*
* @addtogroup GQUEUE
* @{
*/
#ifndef _GQUEUE_OPTIONS_H
#define _GQUEUE_OPTIONS_H
/**
* @name GQUEUE Functions to include.
* @{
*/
/**
* @brief Enable Asynchronous Queues
* @details Defaults to FALSE
*/
#ifndef GQUEUE_NEED_ASYNC
#define GQUEUE_NEED_ASYNC FALSE
#endif
/**
* @brief Enable Get-Synchronous Queues
* @details Defaults to FALSE
*/
#ifndef GQUEUE_NEED_GSYNC
#define GQUEUE_NEED_GSYNC FALSE
#endif
/**
* @brief Enable Fully Synchronous Queues
* @details Defaults to FALSE
*/
#ifndef GQUEUE_NEED_FSYNC
#define GQUEUE_NEED_FSYNC FALSE
#endif
/**
* @}
*
* @name GQUEUE Optional Sizing Parameters
* @{
*/
/** @} */
#endif /* _GQUEUE_OPTIONS_H */
/** @} */
|