Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
9936feef
Commit
9936feef
authored
Jun 12, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Make the Dll* entry points hidden.
parent
72e2dea1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
6 deletions
+9
-6
main.c
dlls/mshtml/main.c
+1
-0
wininet_main.c
dlls/wininet/wininet_main.c
+2
-0
objbase.h
include/objbase.h
+4
-4
shlwapi.h
include/shlwapi.h
+2
-2
No files found.
dlls/mshtml/main.c
View file @
9936feef
...
...
@@ -34,6 +34,7 @@
#include "winreg.h"
#include "ole2.h"
#include "advpub.h"
#include "shlwapi.h"
#include "wine/unicode.h"
#include "wine/debug.h"
...
...
dlls/wininet/wininet_main.c
View file @
9936feef
...
...
@@ -23,6 +23,8 @@
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
#include "winreg.h"
#include "shlwapi.h"
#include "wine/debug.h"
...
...
include/objbase.h
View file @
9936feef
...
...
@@ -426,13 +426,13 @@ INT WINAPI StringFromGUID2(REFGUID id, LPOLESTR str, INT cmax);
/*****************************************************************************
* COM Server dll - exports
*/
HRESULT
WINAPI
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
);
HRESULT
WINAPI
DllCanUnloadNow
(
void
);
HRESULT
WINAPI
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
)
DECLSPEC_HIDDEN
;
HRESULT
WINAPI
DllCanUnloadNow
(
void
)
DECLSPEC_HIDDEN
;
/* shouldn't be here, but is nice for type checking */
#ifdef __WINESRC__
HRESULT
WINAPI
DllRegisterServer
(
void
);
HRESULT
WINAPI
DllUnregisterServer
(
void
);
HRESULT
WINAPI
DllRegisterServer
(
void
)
DECLSPEC_HIDDEN
;
HRESULT
WINAPI
DllUnregisterServer
(
void
)
DECLSPEC_HIDDEN
;
#endif
...
...
include/shlwapi.h
View file @
9936feef
...
...
@@ -978,7 +978,7 @@ typedef HRESULT (CALLBACK *DLLGETVERSIONPROC)(DLLVERSIONINFO *);
#ifdef __WINESRC__
/* shouldn't be here, but is nice for type checking */
HRESULT
WINAPI
DllGetVersion
(
DLLVERSIONINFO
*
);
HRESULT
WINAPI
DllGetVersion
(
DLLVERSIONINFO
*
)
DECLSPEC_HIDDEN
;
#endif
typedef
struct
_DLLVERSIONINFO2
{
...
...
@@ -995,7 +995,7 @@ typedef struct _DLLVERSIONINFO2 {
#define MAKEDLLVERULL(mjr, mnr, bld, qfe) (((ULONGLONG)(mjr)<< 48)| \
((ULONGLONG)(mnr)<< 32) | ((ULONGLONG)(bld)<< 16) | (ULONGLONG)(qfe))
HRESULT
WINAPI
DllInstall
(
BOOL
,
LPCWSTR
);
HRESULT
WINAPI
DllInstall
(
BOOL
,
LPCWSTR
)
DECLSPEC_HIDDEN
;
/* IsOS definitions */
...
...
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