mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 07:00:03 +01:00
Not used by any driver/module, so no need to keep it exported. Also making them type-safe. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1722>
22 lines
472 B
C
22 lines
472 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef _XORG_XF86MODULE_PRIV_H
|
|
#define _XORG_XF86MODULE_PRIV_H
|
|
|
|
/*
|
|
* unload a previously loaded module
|
|
*
|
|
* @param mod the module to unload
|
|
*/
|
|
void UnloadModule(ModuleDescPtr mod);
|
|
|
|
/*
|
|
* unload a previously loaded sun-module
|
|
*
|
|
* @param mod the sub-module to unload
|
|
*/
|
|
void UnloadSubModule(ModuleDescPtr mod);
|
|
|
|
#endif /* _XORG_XF86MODULE_PRIV_H */
|