annotate vidix/drivers.h @ 22949:6613c5397aba

Remove the .norecurse hack. It bloats the Makefile, adds maintenance burden, likely has no users and most of all does not work correctly anyway.
author diego
date Wed, 11 Apr 2007 07:16:04 +0000
parents d74001dbe2a6
children 82216ef041e0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22902
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
1 /*
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
2 * Copyright (C) 2007 Benjamin Zores <ben@geexbox.org>
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
3 * Vidix drivers registry handler.
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
4 *
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
5 * This program is free software; you can redistribute it and/or modify
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
6 * it under the terms of the GNU General Public License as published by
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
7 * the Free Software Foundation; either version 2 of the License, or
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
8 * (at your option) any later version.
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
9 *
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
10 * This program is distributed in the hope that it will be useful,
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
13 * GNU General Public License for more details.
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
14 *
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
15 * You should have received a copy of the GNU General Public License
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
16 * along with this program; if not, write to the Free Software Foundation,
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
d74001dbe2a6 missing headers in vidix drivers registry files
ben
parents: 22857
diff changeset
18 */
22857
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents:
diff changeset
19
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents:
diff changeset
20 #ifndef VIDIX_DRIVERS_H
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents:
diff changeset
21 #define VIDIX_DRIVERS_H
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents:
diff changeset
22
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents:
diff changeset
23 void vidix_register_all_drivers (void);
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents:
diff changeset
24
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents:
diff changeset
25 int vidix_find_driver (VDXContext *ctx, const char *name,
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents:
diff changeset
26 unsigned int cap, int verbose);
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents:
diff changeset
27
77def5093daf switch to new internal vidix API, no more dlopen/dlsym, libvidix is now a fully static library with all drivers built-in
ben
parents:
diff changeset
28 #endif /* VIDIX_DRIVERS_H */