Does anyone know what file(s) need to be included in order to compile software written using an older xextproto Xagstr.h include?
For instance, using xextproto-7.0.5 you might have:
Code:
#include <X11/extensions/shmstr.h>
#include <X11/extensions/securstr.h>
To compile the same software using xextproto-7.1.1 you simply change it to:
Code:
#include <X11/extensions/shmproto.h>
#include <X11/extensions/securproto.h>
But what is now the compatible library to include instead of:
Code:
#include <X11/extensions/Xagstr.h>
Is there an API out there that highlights these changes for X?
Thank you!