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
Alexey Alyaev
wine
Commits
9a2f5a6d
Commit
9a2f5a6d
authored
13 years ago
by
Marcus Meissner
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
inetcomm: Mark internal symbols as hidden.
parent
f5ae9789
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/inetcomm/inetcomm_private.h
+22
-22
22 additions, 22 deletions
dlls/inetcomm/inetcomm_private.h
with
22 additions
and
22 deletions
dlls/inetcomm/inetcomm_private.h
+
22
−
22
View file @
9a2f5a6d
...
...
@@ -50,35 +50,35 @@ struct InternetTransport
HWND
hwnd
;
};
HRESULT
InternetTransport_Init
(
InternetTransport
*
This
);
HRESULT
InternetTransport_GetServerInfo
(
InternetTransport
*
This
,
LPINETSERVER
pInetServer
);
HRESULT
InternetTransport_Init
(
InternetTransport
*
This
)
DECLSPEC_HIDDEN
;
HRESULT
InternetTransport_GetServerInfo
(
InternetTransport
*
This
,
LPINETSERVER
pInetServer
)
DECLSPEC_HIDDEN
;
HRESULT
InternetTransport_InetServerFromAccount
(
InternetTransport
*
This
,
IImnAccount
*
pAccount
,
LPINETSERVER
pInetServer
);
IImnAccount
*
pAccount
,
LPINETSERVER
pInetServer
)
DECLSPEC_HIDDEN
;
HRESULT
InternetTransport_Connect
(
InternetTransport
*
This
,
LPINETSERVER
pInetServer
,
boolean
fAuthenticate
,
boolean
fCommandLogging
);
HRESULT
InternetTransport_HandsOffCallback
(
InternetTransport
*
This
);
HRESULT
InternetTransport_DropConnection
(
InternetTransport
*
This
);
LPINETSERVER
pInetServer
,
boolean
fAuthenticate
,
boolean
fCommandLogging
)
DECLSPEC_HIDDEN
;
HRESULT
InternetTransport_HandsOffCallback
(
InternetTransport
*
This
)
DECLSPEC_HIDDEN
;
HRESULT
InternetTransport_DropConnection
(
InternetTransport
*
This
)
DECLSPEC_HIDDEN
;
HRESULT
InternetTransport_GetStatus
(
InternetTransport
*
This
,
IXPSTATUS
*
pCurrentStatus
);
HRESULT
InternetTransport_ChangeStatus
(
InternetTransport
*
This
,
IXPSTATUS
Status
);
IXPSTATUS
*
pCurrentStatus
)
DECLSPEC_HIDDEN
;
HRESULT
InternetTransport_ChangeStatus
(
InternetTransport
*
This
,
IXPSTATUS
Status
)
DECLSPEC_HIDDEN
;
HRESULT
InternetTransport_ReadLine
(
InternetTransport
*
This
,
INETXPORT_COMPLETION_FUNCTION
fnCompletion
);
INETXPORT_COMPLETION_FUNCTION
fnCompletion
)
DECLSPEC_HIDDEN
;
HRESULT
InternetTransport_Write
(
InternetTransport
*
This
,
const
char
*
pvData
,
int
cbSize
,
INETXPORT_COMPLETION_FUNCTION
fnCompletion
);
int
cbSize
,
INETXPORT_COMPLETION_FUNCTION
fnCompletion
)
DECLSPEC_HIDDEN
;
HRESULT
InternetTransport_DoCommand
(
InternetTransport
*
This
,
LPCSTR
pszCommand
,
INETXPORT_COMPLETION_FUNCTION
fnCompletion
);
LPCSTR
pszCommand
,
INETXPORT_COMPLETION_FUNCTION
fnCompletion
)
DECLSPEC_HIDDEN
;
BOOL
InternetTransport_RegisterClass
(
HINSTANCE
hInstance
);
void
InternetTransport_UnregisterClass
(
HINSTANCE
hInstance
);
BOOL
InternetTransport_RegisterClass
(
HINSTANCE
hInstance
)
DECLSPEC_HIDDEN
;
void
InternetTransport_UnregisterClass
(
HINSTANCE
hInstance
)
DECLSPEC_HIDDEN
;
HRESULT
MimeBody_create
(
IUnknown
*
outer
,
void
**
obj
);
HRESULT
MimeAllocator_create
(
IUnknown
*
outer
,
void
**
obj
);
HRESULT
MimeMessage_create
(
IUnknown
*
outer
,
void
**
obj
);
HRESULT
MimeSecurity_create
(
IUnknown
*
outer
,
void
**
obj
);
HRESULT
VirtualStream_create
(
IUnknown
*
outer
,
void
**
obj
);
HRESULT
MimeBody_create
(
IUnknown
*
outer
,
void
**
obj
)
DECLSPEC_HIDDEN
;
HRESULT
MimeAllocator_create
(
IUnknown
*
outer
,
void
**
obj
)
DECLSPEC_HIDDEN
;
HRESULT
MimeMessage_create
(
IUnknown
*
outer
,
void
**
obj
)
DECLSPEC_HIDDEN
;
HRESULT
MimeSecurity_create
(
IUnknown
*
outer
,
void
**
obj
)
DECLSPEC_HIDDEN
;
HRESULT
VirtualStream_create
(
IUnknown
*
outer
,
void
**
obj
)
DECLSPEC_HIDDEN
;
HRESULT
MimeInternational_Construct
(
IMimeInternational
**
internat
);
HRESULT
MimeInternational_Construct
(
IMimeInternational
**
internat
)
DECLSPEC_HIDDEN
;
HRESULT
SMTPTransportCF_Create
(
REFIID
riid
,
LPVOID
*
ppv
);
HRESULT
IMAPTransportCF_Create
(
REFIID
riid
,
LPVOID
*
ppv
);
HRESULT
POP3TransportCF_Create
(
REFIID
riid
,
LPVOID
*
ppv
);
HRESULT
SMTPTransportCF_Create
(
REFIID
riid
,
LPVOID
*
ppv
)
DECLSPEC_HIDDEN
;
HRESULT
IMAPTransportCF_Create
(
REFIID
riid
,
LPVOID
*
ppv
)
DECLSPEC_HIDDEN
;
HRESULT
POP3TransportCF_Create
(
REFIID
riid
,
LPVOID
*
ppv
)
DECLSPEC_HIDDEN
;
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