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
c14de4c8
Commit
c14de4c8
authored
Nov 29, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Remove DECLSPEC_HIDDEN definition.
parent
bfeba8d2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
16 deletions
+6
-16
dnsapi.h
dlls/dnsapi/dnsapi.h
+1
-1
ntuser_private.h
dlls/win32u/ntuser_private.h
+1
-1
winnt.h
include/winnt.h
+4
-14
No files found.
dlls/dnsapi/dnsapi.h
View file @
c14de4c8
...
...
@@ -97,7 +97,7 @@ static inline char *strdup_ua( const char *src )
return
dst
;
}
extern
const
char
*
debugstr_type
(
unsigned
short
)
DECLSPEC_HIDDEN
;
extern
const
char
*
debugstr_type
(
unsigned
short
);
struct
get_searchlist_params
{
...
...
dlls/win32u/ntuser_private.h
View file @
c14de4c8
...
...
@@ -247,7 +247,7 @@ extern void free_dce( struct dce *dce, HWND hwnd );
extern
void
invalidate_dce
(
WND
*
win
,
const
RECT
*
extra_rect
);
/* message.c */
extern
BOOL
set_keyboard_auto_repeat
(
BOOL
enable
)
DECLSPEC_HIDDEN
;
extern
BOOL
set_keyboard_auto_repeat
(
BOOL
enable
);
/* window.c */
HANDLE
alloc_user_handle
(
struct
user_object
*
ptr
,
unsigned
int
type
);
...
...
include/winnt.h
View file @
c14de4c8
...
...
@@ -51,16 +51,16 @@ extern "C" {
#define NTAPI __stdcall
#define FASTCALL __fastcall
#ifndef
MIDL_PASS
#ifndef
DECLSPEC_IMPORT
# if defined(_MSC_VER)
# define DECLSPEC_IMPORT __declspec(dllimport)
# elif defined(__MINGW32__) || defined(__CYGWIN__)
# define DECLSPEC_IMPORT __attribute__((dllimport))
# elif defined(__GNUC__)
# define DECLSPEC_IMPORT __attribute__((visibility ("hidden")))
# else
# define DECLSPEC_IMPORT
DECLSPEC_HIDDEN
# define DECLSPEC_IMPORT
# endif
#else
# define DECLSPEC_IMPORT
#endif
#ifndef DECLSPEC_NORETURN
...
...
@@ -193,16 +193,6 @@ extern "C" {
# define DECLSPEC_EXPORT
#endif
#ifndef DECLSPEC_HIDDEN
# if defined(_MSC_VER) || defined(__MINGW32__) || defined(__CYGWIN__) || defined(__sun)
# define DECLSPEC_HIDDEN
# elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)))
# define DECLSPEC_HIDDEN __attribute__((visibility ("hidden")))
# else
# define DECLSPEC_HIDDEN
# endif
#endif
#ifndef __has_attribute
# define __has_attribute(x) 0
#endif
...
...
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