mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 04:40:02 +01:00
It's not used by any modules/drivers, so no need to keep it public. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1727>
19 lines
447 B
C
19 lines
447 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef _XSERVER_MI_PRIV_H
|
|
#define _XSERVER_MI_PRIV_H
|
|
|
|
#include <X11/Xprotostr.h>
|
|
|
|
#include "include/gc.h"
|
|
#include "include/pixmap.h"
|
|
#include "include/screenint.h"
|
|
#include "mi/mi.h"
|
|
|
|
void miScreenClose(ScreenPtr pScreen);
|
|
|
|
void miWideArc(DrawablePtr pDraw, GCPtr pGC, int narcs, xArc * parcs);
|
|
|
|
#endif /* _XSERVER_MI_PRIV_H */
|