mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-25 21:02:21 +00:00
Rework symbol visibility for easier maintenance
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).
This commit is contained in:
parent
0b8f8b24f7
commit
49f77fff14
528 changed files with 5964 additions and 5880 deletions
|
|
@ -72,9 +72,6 @@ OF THIS SOFTWARE.
|
|||
*
|
||||
*/
|
||||
|
||||
extern unsigned long globalSerialNumber;
|
||||
extern unsigned long serverGeneration;
|
||||
|
||||
#include <X11/Xosdefs.h>
|
||||
#include <X11/Xfuncproto.h>
|
||||
#include <X11/Xmd.h>
|
||||
|
|
@ -227,17 +224,17 @@ typedef struct _xReq *xReqPtr;
|
|||
((char *) &(dst))[0] = ((char *) &(src))[1];\
|
||||
((char *) &(dst))[1] = ((char *) &(src))[0]; }
|
||||
|
||||
extern void SwapLongs(
|
||||
extern _X_EXPORT void SwapLongs(
|
||||
CARD32 *list,
|
||||
unsigned long count);
|
||||
|
||||
extern void SwapShorts(
|
||||
extern _X_EXPORT void SwapShorts(
|
||||
short *list,
|
||||
unsigned long count);
|
||||
|
||||
extern void MakePredeclaredAtoms(void);
|
||||
extern _X_EXPORT void MakePredeclaredAtoms(void);
|
||||
|
||||
extern int Ones(
|
||||
extern _X_EXPORT int Ones(
|
||||
unsigned long /*mask*/);
|
||||
|
||||
typedef struct _xPoint *DDXPointPtr;
|
||||
|
|
@ -256,4 +253,7 @@ typedef struct _CharInfo *CharInfoPtr; /* also in fonts/include/font.h */
|
|||
#define _XTYPEDEF_CHARINFOPTR
|
||||
#endif
|
||||
|
||||
extern _X_EXPORT unsigned long globalSerialNumber;
|
||||
extern _X_EXPORT unsigned long serverGeneration;
|
||||
|
||||
#endif /* MISC_H */
|
||||
|
|
|
|||
Loading…
Reference in a new issue