mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-13 07:47:46 +00:00
bb5623aa9e
of the input routines it can use. All vid targets should do this for the input method they should use. While this is essentially hardcoding, it's kinda necessary for now. Once we have everything working and tested we can work on an interdependency scheme so X input methods only work with X output methods, etc...
81 lines
1.7 KiB
C
81 lines
1.7 KiB
C
/*
|
|
plugin.c
|
|
|
|
(description)
|
|
|
|
Copyright (C) 1999,2000 contributors of the QuakeForge project
|
|
Please see the file "AUTHORS" for a list of contributors
|
|
|
|
Author: Jeff Teunissen <deek@quakeforge.net>
|
|
Date: 09 Feb 2000
|
|
|
|
This file is part of the QuakeForge Core system.
|
|
|
|
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 2
|
|
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, write to:
|
|
|
|
Free Software Foundation, Inc.
|
|
59 Temple Place - Suite 330
|
|
Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <dlfcn.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <config.h>
|
|
#include <net.h>
|
|
#include <plugin.h>
|
|
|
|
input_pi *IN;
|
|
|
|
int plugin_load(char *filename)
|
|
{
|
|
void *h;
|
|
void *(*gpi) (void);
|
|
|
|
if ((h = dlopen(filename, RTLD_LAZY))) {
|
|
if ((gpi = dlsym(h, "get_input_plugin_info"))) {
|
|
input_pi *p;
|
|
|
|
p = (input_pi *) gpi();
|
|
p->handle = h;
|
|
p->filename = filename;
|
|
|
|
IN = p;
|
|
/*
|
|
} else if (gpi = dlsym(h, "get_sound_plugin_info")) {
|
|
sound_pi *p;
|
|
|
|
p = (sound_pi *) gpi();
|
|
p->handle = h;
|
|
p->filename = filename;
|
|
*/
|
|
} else {
|
|
dlclose(h);
|
|
return 0;
|
|
}
|
|
} else {
|
|
fprintf(stderr, "%s\n", dlerror());
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
void plugin_unload(void *handle)
|
|
{
|
|
dlclose(handle);
|
|
}
|
|
|