ReactOS 0.4.16-dev-1946-g52006dd
notify.h
Go to the documentation of this file.
1#pragma once
2
3#include <uacpi/types.h>
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9#ifndef UACPI_BAREBONES_MODE
10
11/*
12 * Install a Notify() handler to a device node.
13 * A handler installed to the root node will receive all notifications, even if
14 * a device already has a dedicated Notify handler.
15 * 'handler_context' is passed to the handler on every invocation.
16 */
19 uacpi_handle handler_context
20);
21
24);
25
26#endif // !UACPI_BAREBONES_MODE
27
28#ifdef __cplusplus
29}
30#endif
UINT(* handler)(MSIPACKAGE *)
Definition: action.c:7512
uacpi_status
Definition: status.h:10
uacpi_status(* uacpi_notify_handler)(uacpi_handle context, uacpi_namespace_node *node, uacpi_u64 value)
Definition: types.h:508
uacpi_status uacpi_uninstall_notify_handler(uacpi_namespace_node *node, uacpi_notify_handler handler)
Definition: notify.c:189
uacpi_status uacpi_install_notify_handler(uacpi_namespace_node *node, uacpi_notify_handler handler, uacpi_handle handler_context)
Definition: notify.c:134
Definition: dlist.c:348