summaryrefslogtreecommitdiff
path: root/include/registry.h
AgeCommit message (Collapse)AuthorFilesLines
2008-12-03Rework symbol visibility for easier maintenancePaulo Cesar Pereira de Andrade1-8/+8
Save in a few special cases, _X_EXPORT should not be used in C source files. Instead, it should be used in headers, and the proper C source include that header. Some special cases are symbols that need to be shared between modules, but not expected to be used by external drivers, and symbols that are accessible via LoaderSymbol/dlopen. This patch also adds conditionally some new sdk header files, depending on extensions enabled. These files were added to match pattern for other extensions/modules, that is, have the headers "deciding" symbol visibility in the sdk. These headers are: o Xext/panoramiXsrv.h, Xext/panoramiX.h o fbpict.h (unconditionally) o vidmodeproc.h o mioverlay.h (unconditionally, used only by xaa) o xfixes.h (unconditionally, symbols required by dri2) LoaderSymbol and similar functions now don't have different prototypes, in loaderProcs.h and xf86Module.h, so that both headers can be included, without the need of defining IN_LOADER. xf86NewInputDevice() device prototype readded to xf86Xinput.h, but not exported (and with a comment about it).
2007-12-14registry: XREGISTRY_UNKNOWN needs to be defined even if XREGISTRY isn't enabledOtavio Salvador1-5/+5
In case XREGISTRY isn't enabled, XREGISTRY_UNKNOWN is used but it's not being available. It's now always available.
2007-11-26registry: Add a call for DTRACE compatibility.Eamon Walsh1-0/+2
2007-11-26registry: Rebase registry to use the server config file of protocol names.Eamon Walsh1-8/+5
2007-10-11dix: Add a new "registry" mechanism for registering string names of things.Eamon Walsh1-0/+65
Supports protocol requests, events, and errors, and resource names. Modify XRES extension to use it.