Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
42a294b0
Commit
42a294b0
authored
14 years ago
by
Marcus Meissner
Committed by
Alexandre Julliard
14 years ago
Browse files
Options
Downloads
Patches
Plain Diff
kernel32: Mark more internal symbols as invisible.
parent
6148f785
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/kernel32/console_private.h
+11
-11
11 additions, 11 deletions
dlls/kernel32/console_private.h
dlls/kernel32/kernel_private.h
+18
-18
18 additions, 18 deletions
dlls/kernel32/kernel_private.h
with
29 additions
and
29 deletions
dlls/kernel32/console_private.h
+
11
−
11
View file @
42a294b0
...
...
@@ -22,21 +22,21 @@
#define __WINE_CONSOLE_PRIVATE_H
/* console.c */
extern
int
CONSOLE_HandleCtrlC
(
unsigned
);
extern
int
CONSOLE_HandleCtrlC
(
unsigned
)
DECLSPEC_HIDDEN
;
/* console.c */
extern
int
CONSOLE_GetHistory
(
int
idx
,
WCHAR
*
buf
,
int
buf_len
);
extern
BOOL
CONSOLE_AppendHistory
(
const
WCHAR
*
p
);
extern
unsigned
CONSOLE_GetNumHistoryEntries
(
void
);
extern
void
CONSOLE_FillLineUniform
(
HANDLE
hConsoleOutput
,
int
i
,
int
j
,
int
len
,
LPCHAR_INFO
lpFill
);
extern
BOOL
CONSOLE_GetEditionMode
(
HANDLE
,
int
*
);
extern
int
CONSOLE_GetHistory
(
int
idx
,
WCHAR
*
buf
,
int
buf_len
)
DECLSPEC_HIDDEN
;
extern
BOOL
CONSOLE_AppendHistory
(
const
WCHAR
*
p
)
DECLSPEC_HIDDEN
;
extern
unsigned
CONSOLE_GetNumHistoryEntries
(
void
)
DECLSPEC_HIDDEN
;
extern
void
CONSOLE_FillLineUniform
(
HANDLE
hConsoleOutput
,
int
i
,
int
j
,
int
len
,
LPCHAR_INFO
lpFill
)
DECLSPEC_HIDDEN
;
extern
BOOL
CONSOLE_GetEditionMode
(
HANDLE
,
int
*
)
DECLSPEC_HIDDEN
;
/* editline.c */
extern
WCHAR
*
CONSOLE_Readline
(
HANDLE
,
BOOL
);
extern
WCHAR
*
CONSOLE_Readline
(
HANDLE
,
BOOL
)
DECLSPEC_HIDDEN
;
/* term.c */
extern
BOOL
TERM_Init
(
void
);
extern
BOOL
TERM_Exit
(
void
);
extern
unsigned
TERM_FillSimpleChar
(
WCHAR
real_inchar
,
INPUT_RECORD
*
ir
);
extern
int
TERM_FillInputRecord
(
const
char
*
in
,
size_t
len
,
INPUT_RECORD
*
ir
);
extern
BOOL
TERM_Init
(
void
)
DECLSPEC_HIDDEN
;
extern
BOOL
TERM_Exit
(
void
)
DECLSPEC_HIDDEN
;
extern
unsigned
TERM_FillSimpleChar
(
WCHAR
real_inchar
,
INPUT_RECORD
*
ir
)
DECLSPEC_HIDDEN
;
extern
int
TERM_FillInputRecord
(
const
char
*
in
,
size_t
len
,
INPUT_RECORD
*
ir
)
DECLSPEC_HIDDEN
;
#endif
/* __WINE_CONSOLE_PRIVATE_H */
This diff is collapsed.
Click to expand it.
dlls/kernel32/kernel_private.h
+
18
−
18
View file @
42a294b0
...
...
@@ -28,8 +28,8 @@ BOOL WINAPI VerifyConsoleIoHandle(HANDLE);
HANDLE
WINAPI
DuplicateConsoleHandle
(
HANDLE
,
DWORD
,
BOOL
,
DWORD
);
BOOL
WINAPI
CloseConsoleHandle
(
HANDLE
handle
);
HANDLE
WINAPI
GetConsoleInputWaitHandle
(
void
);
BOOL
CONSOLE_Init
(
RTL_USER_PROCESS_PARAMETERS
*
params
);
BOOL
CONSOLE_Exit
(
void
);
BOOL
CONSOLE_Init
(
RTL_USER_PROCESS_PARAMETERS
*
params
)
DECLSPEC_HIDDEN
;
BOOL
CONSOLE_Exit
(
void
)
DECLSPEC_HIDDEN
;
static
inline
BOOL
is_console_handle
(
HANDLE
h
)
{
...
...
@@ -52,15 +52,15 @@ static inline obj_handle_t console_handle_unmap(HANDLE h)
#define KERNEL32_CONSOLE_ALLOC ((HANDLE)1)
#define KERNEL32_CONSOLE_SHELL ((HANDLE)2)
extern
HMODULE
kernel32_handle
;
extern
HMODULE
kernel32_handle
DECLSPEC_HIDDEN
;
extern
const
WCHAR
*
DIR_Windows
;
extern
const
WCHAR
*
DIR_System
;
extern
const
WCHAR
*
DIR_SysWow64
;
extern
const
WCHAR
*
DIR_Windows
DECLSPEC_HIDDEN
;
extern
const
WCHAR
*
DIR_System
DECLSPEC_HIDDEN
;
extern
const
WCHAR
*
DIR_SysWow64
DECLSPEC_HIDDEN
;
extern
void
FILE_SetDosError
(
void
);
extern
WCHAR
*
FILE_name_AtoW
(
LPCSTR
name
,
BOOL
alloc
);
extern
DWORD
FILE_name_WtoA
(
LPCWSTR
src
,
INT
srclen
,
LPSTR
dest
,
INT
destlen
);
extern
void
FILE_SetDosError
(
void
)
DECLSPEC_HIDDEN
;
extern
WCHAR
*
FILE_name_AtoW
(
LPCSTR
name
,
BOOL
alloc
)
DECLSPEC_HIDDEN
;
extern
DWORD
FILE_name_WtoA
(
LPCWSTR
src
,
INT
srclen
,
LPSTR
dest
,
INT
destlen
)
DECLSPEC_HIDDEN
;
/* return values for MODULE_GetBinaryType */
enum
binary_type
...
...
@@ -86,25 +86,25 @@ struct binary_info
};
/* module.c */
extern
WCHAR
*
MODULE_get_dll_load_path
(
LPCWSTR
module
);
extern
void
MODULE_get_binary_info
(
HANDLE
hfile
,
struct
binary_info
*
info
);
extern
WCHAR
*
MODULE_get_dll_load_path
(
LPCWSTR
module
)
DECLSPEC_HIDDEN
;
extern
void
MODULE_get_binary_info
(
HANDLE
hfile
,
struct
binary_info
*
info
)
DECLSPEC_HIDDEN
;
extern
BOOL
NLS_IsUnicodeOnlyLcid
(
LCID
);
extern
BOOL
NLS_IsUnicodeOnlyLcid
(
LCID
)
DECLSPEC_HIDDEN
;
/* environ.c */
extern
void
ENV_CopyStartupInformation
(
void
);
extern
void
ENV_CopyStartupInformation
(
void
)
DECLSPEC_HIDDEN
;
/* computername.c */
extern
void
COMPUTERNAME_Init
(
void
);
extern
void
COMPUTERNAME_Init
(
void
)
DECLSPEC_HIDDEN
;
/* locale.c */
extern
void
LOCALE_Init
(
void
);
extern
void
LOCALE_InitRegistry
(
void
);
extern
void
LOCALE_Init
(
void
)
DECLSPEC_HIDDEN
;
extern
void
LOCALE_InitRegistry
(
void
)
DECLSPEC_HIDDEN
;
/* oldconfig.c */
extern
void
convert_old_config
(
void
);
extern
void
convert_old_config
(
void
)
DECLSPEC_HIDDEN
;
/* returns directory handle for named objects */
extern
HANDLE
get_BaseNamedObjects_handle
(
void
);
extern
HANDLE
get_BaseNamedObjects_handle
(
void
)
DECLSPEC_HIDDEN
;
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment