Xi: move VPC define into the only source using it

Only used inside listdev.c, so no need to have it within a header.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-09-09 14:52:25 +02:00
committed by Enrico Weigelt
parent b5210be9eb
commit 006f0ec78c
2 changed files with 2 additions and 2 deletions

View File

@@ -70,6 +70,8 @@ SOFTWARE.
#include "xkbstr.h"
#include "listdev.h"
#define VPC 20 /* Max # valuators per chunk */
/***********************************************************************
*
* This procedure calculates the size of the information to be returned

View File

@@ -25,8 +25,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#ifndef LISTDEV_H
#define LISTDEV_H 1
#define VPC 20 /* Max # valuators per chunk */
int ProcXListInputDevices(ClientPtr /* client */
);