#include <stdint.h>
#include "wpi/hal/Types.h"
#include "wpi/util/string.h"
Go to the source code of this file.
|
| HAL_AlertHandle | HAL_CreateAlert (const struct WPI_String *group, const struct WPI_String *text, int32_t level, int32_t *status) |
| | Creates an alert.
|
| void | HAL_DestroyAlert (HAL_AlertHandle alertHandle) |
| | Destroys an alert.
|
| void | HAL_SetAlertActive (HAL_AlertHandle alertHandle, HAL_Bool active, int32_t *status) |
| | Sets whether the alert should be displayed.
|
| HAL_Bool | HAL_IsAlertActive (HAL_AlertHandle alertHandle, int32_t *status) |
| | Checks if an alert is active.
|
| void | HAL_SetAlertText (HAL_AlertHandle alertHandle, const struct WPI_String *text, int32_t *status) |
| | Updates the text of an alert.
|
| void | HAL_GetAlertText (HAL_AlertHandle alertHandle, struct WPI_String *text, int32_t *status) |
| | Gets the text of an alert.
|