mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-01 23:08:05 +02:00
This reverts commit 4742790351.
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/2102>
23 lines
612 B
C
23 lines
612 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/Xdefs.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);
|
|
void miStepDash(int dist, int * pDashIndex, unsigned char * pDash,
|
|
int numInDashList, int *pDashOffset);
|
|
Bool mieqInit(void);
|
|
|
|
#endif /* _XSERVER_MI_PRIV_H */
|