Descent3/lib/linux/dyna_oxlib.h

99 lines
2.6 KiB
C
Raw Normal View History

/*
* Descent 3
* Copyright (C) 2024 Parallax Software
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2024-04-16 03:43:29 +00:00
#ifdef DECLARE_POINTERS
#define FEXTERN
#else
#define FEXTERN extern
#endif
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/extensions/xf86dga.h>
#define XF86DGAQueryVersion DGAQueryVersion
#define XF86DGAQueryExtension DGAQueryExtension
#define XF86DGADirectVideo DGADirectVideo
2024-04-16 18:56:40 +00:00
typedef Bool (*DGAQueryVersion_fp)(Display *pa, int *pb, int *pc);
2024-04-16 03:43:29 +00:00
FEXTERN DGAQueryVersion_fp DGAQueryVersion;
2024-04-16 18:56:40 +00:00
typedef Bool (*DGAQueryExtension_fp)(Display *pa, int *pb, int *pc);
2024-04-16 03:43:29 +00:00
FEXTERN DGAQueryExtension_fp DGAQueryExtension;
2024-04-16 18:56:40 +00:00
typedef Status (*DGADirectVideo_fp)(Display *pa, int pb, int pc);
2024-04-16 03:43:29 +00:00
FEXTERN DGADirectVideo_fp DGADirectVideo;
#ifndef DECLARE_POINTERS
bool LoadOutrageXWindowsLib(bool load = true);
#else
#include <dlfcn.h>
#include <stdlib.h>
#include <stdio.h>
2024-04-16 18:56:40 +00:00
void LoadOutrageXWindowsLibSetNULL(void) {
DGAQueryVersion = NULL;
DGAQueryExtension = NULL;
DGADirectVideo = NULL;
2024-04-16 03:43:29 +00:00
}
2024-04-16 18:56:40 +00:00
bool LoadOutrageXWindowsLib(bool load) {
#define XWINDOWSEXTLIB "OutrageDynXLib.so"
static void *handle = NULL;
2024-04-16 03:43:29 +00:00
2024-04-16 18:56:40 +00:00
if (!load) {
LoadOutrageXWindowsLibSetNULL();
if (handle) {
dlclose(handle);
handle = NULL;
return true;
}
fprintf(stderr, "Library Unload Failed: %s\n", XWINDOWSEXTLIB);
return false;
}
2024-04-16 03:43:29 +00:00
2024-04-16 18:56:40 +00:00
if (handle)
return true;
2024-04-16 03:43:29 +00:00
2024-04-16 18:56:40 +00:00
// Load the library
handle = dlopen(XWINDOWSEXTLIB, RTLD_LAZY | RTLD_GLOBAL);
if (!handle) {
fprintf(stderr, "Library Load Failed: %s\n", XWINDOWSEXTLIB);
return false;
}
2024-04-16 03:43:29 +00:00
2024-04-16 18:56:40 +00:00
DGAQueryVersion = (DGAQueryVersion_fp)dlsym(handle, "DGAQueryVersion");
if (!DGAQueryVersion)
goto load_error;
2024-04-16 03:43:29 +00:00
2024-04-16 18:56:40 +00:00
DGAQueryExtension = (DGAQueryExtension_fp)dlsym(handle, "DGAQueryExtension");
if (!DGAQueryExtension)
goto load_error;
2024-04-16 03:43:29 +00:00
2024-04-16 18:56:40 +00:00
DGADirectVideo = (DGADirectVideo_fp)dlsym(handle, "DGADirectVideo");
if (!DGADirectVideo)
goto load_error;
return true;
2024-04-16 03:43:29 +00:00
load_error:
2024-04-16 18:56:40 +00:00
LoadOutrageXWindowsLibSetNULL();
fprintf(stderr, "Library Symbol Resolve Error: %s\n", XWINDOWSEXTLIB);
dlclose(handle);
handle = NULL;
return false;
2024-04-16 03:43:29 +00:00
}
#endif