~ubuntu-branches/ubuntu/edgy/xorg-server/edgy-updates

« back to all changes in this revision

Viewing changes to hw/xfree86/common/xf86Module.h

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Parra Novo
  • Date: 2006-07-25 20:06:28 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060725200628-gjmmd9gxfxdc4ejs
Tags: 1:1.1.1-0ubuntu1
* New Upstream version
* Changed Build-Depends from mesa-swrast-source to mesa-swx11-source,
  following Debian package nomenclature
* Re-did 12_security_policy_in_etc.diff for 1.1.1
* Dropped 15_security_allocate_local.diff (applied upstream)
* Dropped 16_SECURITY_setuid.diff (applied upstream)
* Dropped 000_ubuntu_fix_read_kernel_mapping.patch (applied upstream)
* Dropped 002_ubuntu_fix_for_certain_intel_chipsets.patch (applied upstream)
* Updated versioned Build-Depends on mesa-swx11-source to version
  6.5.0.cvs.20060725-0ubuntu1
* Added arrayobj.c, arrayobj.h, bitset.h & rbadaptors.h to
  GL/symlink-mesa.sh (linked from mesa-swx11-source)
* Added arrayobj.c to default build target on GL/mesa/main

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
 * changed.  The minor revision mask is 0x0000FFFF and the major revision
85
85
 * mask is 0xFFFF0000.
86
86
 */
87
 
#define ABI_ANSIC_VERSION       SET_ABI_VERSION(0, 2)
88
 
#define ABI_VIDEODRV_VERSION    SET_ABI_VERSION(0, 8)
89
 
#define ABI_XINPUT_VERSION      SET_ABI_VERSION(0, 5)
90
 
#define ABI_EXTENSION_VERSION   SET_ABI_VERSION(0, 2)
91
 
#define ABI_FONT_VERSION        SET_ABI_VERSION(0, 4)
 
87
#define ABI_ANSIC_VERSION       SET_ABI_VERSION(0, 3)
 
88
#define ABI_VIDEODRV_VERSION    SET_ABI_VERSION(1, 0)
 
89
#define ABI_XINPUT_VERSION      SET_ABI_VERSION(0, 6)
 
90
#define ABI_EXTENSION_VERSION   SET_ABI_VERSION(0, 3)
 
91
#define ABI_FONT_VERSION        SET_ABI_VERSION(0, 5)
92
92
 
93
93
#define MODINFOSTRING1  0xef23fdc5
94
94
#define MODINFOSTRING2  0x10dc023a
196
196
pointer LoadSubModule(pointer, const char *, const char **,
197
197
                      const char **, pointer, const XF86ModReqInfo *,
198
198
                      int *, int *);
 
199
pointer LoadSubModuleLocal(pointer, const char *, const char **,
 
200
                           const char **, pointer, const XF86ModReqInfo *,
 
201
                           int *, int *);
199
202
void UnloadSubModule(pointer);
200
203
void LoadFont(pointer);
201
204
void UnloadModule (pointer);
202
205
#endif
203
206
pointer LoaderSymbol(const char *);
 
207
pointer LoaderSymbolLocal(pointer module, const char *);
204
208
char **LoaderListDirs(const char **, const char **);
205
209
void LoaderFreeDirList(char **);
206
210
void LoaderErrorMsg(const char *, const char *, int, int);
211
215
void LoaderReqSymbols(const char *, ...);
212
216
int LoaderCheckUnresolved(int);
213
217
void LoaderGetOS(const char **name, int *major, int *minor, int *teeny);
 
218
int LoaderGetABIVersion(const char *abiclass);
214
219
 
215
220
typedef pointer (*ModuleSetupProc)(pointer, pointer, int *, int *);
216
221
typedef void (*ModuleTearDownProc)(pointer);