Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
5a9b6232
Commit
5a9b6232
authored
May 13, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
May 25, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Mark internal symbols with hidden visibility.
parent
b396886e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
8 deletions
+8
-8
x11drv.h
dlls/winex11.drv/x11drv.h
+0
-0
x11drv_main.c
dlls/winex11.drv/x11drv_main.c
+1
-1
x11font.h
dlls/winex11.drv/x11font.h
+3
-3
xcomposite.h
dlls/winex11.drv/xcomposite.h
+1
-1
xrandr.h
dlls/winex11.drv/xrandr.h
+1
-1
xvidmode.h
dlls/winex11.drv/xvidmode.h
+2
-2
No files found.
dlls/winex11.drv/x11drv.h
View file @
5a9b6232
This diff is collapsed.
Click to expand it.
dlls/winex11.drv/x11drv_main.c
View file @
5a9b6232
...
...
@@ -67,7 +67,7 @@ static CRITICAL_SECTION_DEBUG critsect_debug =
};
static
CRITICAL_SECTION
X11DRV_CritSection
=
{
&
critsect_debug
,
-
1
,
0
,
0
,
0
,
0
};
Screen
*
screen
;
static
Screen
*
screen
;
Visual
*
visual
;
unsigned
int
screen_width
;
unsigned
int
screen_height
;
...
...
dlls/winex11.drv/x11font.h
View file @
5a9b6232
...
...
@@ -219,8 +219,8 @@ typedef struct
WORD
internal_charset
;
}
fontMatch
;
extern
fontObject
*
XFONT_GetFontObject
(
X_PHYSFONT
pFont
);
extern
XFontStruct
*
XFONT_GetFontStruct
(
X_PHYSFONT
pFont
);
extern
fontObject
*
XFONT_GetFontObject
(
X_PHYSFONT
pFont
)
DECLSPEC_HIDDEN
;
extern
XFontStruct
*
XFONT_GetFontStruct
(
X_PHYSFONT
pFont
)
DECLSPEC_HIDDEN
;
/* internal charset(hibyte must be set) */
/* lobyte is DEFAULT_CHARSET(=0). */
...
...
@@ -244,6 +244,6 @@ typedef struct tagX11DRV_CP
void
(
*
pGetTextMetricsW
)(
fontObject
*
pfo
,
LPTEXTMETRICW
pTM
);
}
X11DRV_CP
;
extern
const
X11DRV_CP
X11DRV_cptable
[
X11DRV_CPTABLE_COUNT
];
extern
const
X11DRV_CP
X11DRV_cptable
[
X11DRV_CPTABLE_COUNT
]
DECLSPEC_HIDDEN
;
#endif
/* __WINE_X11FONT_H */
dlls/winex11.drv/xcomposite.h
View file @
5a9b6232
...
...
@@ -27,7 +27,7 @@
#ifdef SONAME_LIBXCOMPOSITE
#include <X11/extensions/Xcomposite.h>
#define MAKE_FUNCPTR(f) extern typeof(f) * p##f;
#define MAKE_FUNCPTR(f) extern typeof(f) * p##f
DECLSPEC_HIDDEN
;
MAKE_FUNCPTR
(
XCompositeQueryExtension
)
MAKE_FUNCPTR
(
XCompositeQueryVersion
)
MAKE_FUNCPTR
(
XCompositeVersion
)
...
...
dlls/winex11.drv/xrandr.h
View file @
5a9b6232
...
...
@@ -26,7 +26,7 @@
#ifdef SONAME_LIBXRANDR
void
X11DRV_XRandR_Init
(
void
);
void
X11DRV_XRandR_Init
(
void
)
DECLSPEC_HIDDEN
;
#endif
/* SONAME_LIBXRANDR */
#endif
/* __WINE_XRANDR_H */
dlls/winex11.drv/xvidmode.h
View file @
5a9b6232
...
...
@@ -31,8 +31,8 @@
#include "wingdi.h"
#include "ddrawi.h"
void
X11DRV_XF86VM_Init
(
void
);
void
X11DRV_XF86VM_Cleanup
(
void
);
void
X11DRV_XF86VM_Init
(
void
)
DECLSPEC_HIDDEN
;
void
X11DRV_XF86VM_Cleanup
(
void
)
DECLSPEC_HIDDEN
;
#endif
/* SONAME_LIBXXF86VM */
#endif
/* __WINE_XVIDMODE_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment