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
47526fbf
Commit
47526fbf
authored
Sep 13, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Sep 13, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qmgr: Remove DECLSPEC_HIDDEN usage.
parent
55971cbe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
qmgr.h
dlls/qmgr/qmgr.h
+12
-12
No files found.
dlls/qmgr/qmgr.h
View file @
47526fbf
...
...
@@ -96,23 +96,23 @@ typedef struct
IClassFactory
IClassFactory_iface
;
}
ClassFactoryImpl
;
extern
HANDLE
stop_event
DECLSPEC_HIDDEN
;
extern
ClassFactoryImpl
BITS_ClassFactory
DECLSPEC_HIDDEN
;
extern
BackgroundCopyManagerImpl
globalMgr
DECLSPEC_HIDDEN
;
extern
HANDLE
stop_event
;
extern
ClassFactoryImpl
BITS_ClassFactory
;
extern
BackgroundCopyManagerImpl
globalMgr
;
HRESULT
BackgroundCopyManagerConstructor
(
LPVOID
*
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
BackgroundCopyManagerConstructor
(
LPVOID
*
ppObj
);
HRESULT
BackgroundCopyJobConstructor
(
LPCWSTR
displayName
,
BG_JOB_TYPE
type
,
GUID
*
pJobId
,
BackgroundCopyJobImpl
**
job
)
DECLSPEC_HIDDEN
;
GUID
*
pJobId
,
BackgroundCopyJobImpl
**
job
);
HRESULT
enum_copy_job_create
(
BackgroundCopyManagerImpl
*
qmgr
,
IEnumBackgroundCopyJobs
**
enumjob
)
DECLSPEC_HIDDEN
;
IEnumBackgroundCopyJobs
**
enumjob
);
HRESULT
BackgroundCopyFileConstructor
(
BackgroundCopyJobImpl
*
owner
,
LPCWSTR
remoteName
,
LPCWSTR
localName
,
BackgroundCopyFileImpl
**
file
)
DECLSPEC_HIDDEN
;
HRESULT
EnumBackgroundCopyFilesConstructor
(
BackgroundCopyJobImpl
*
,
IEnumBackgroundCopyFiles
**
)
DECLSPEC_HIDDEN
;
DWORD
WINAPI
fileTransfer
(
void
*
param
)
DECLSPEC_HIDDEN
;
void
processJob
(
BackgroundCopyJobImpl
*
job
)
DECLSPEC_HIDDEN
;
BOOL
processFile
(
BackgroundCopyFileImpl
*
file
,
BackgroundCopyJobImpl
*
job
)
DECLSPEC_HIDDEN
;
BOOL
transitionJobState
(
BackgroundCopyJobImpl
*
job
,
BG_JOB_STATE
from
,
BG_JOB_STATE
to
)
DECLSPEC_HIDDEN
;
BackgroundCopyFileImpl
**
file
);
HRESULT
EnumBackgroundCopyFilesConstructor
(
BackgroundCopyJobImpl
*
,
IEnumBackgroundCopyFiles
**
);
DWORD
WINAPI
fileTransfer
(
void
*
param
);
void
processJob
(
BackgroundCopyJobImpl
*
job
);
BOOL
processFile
(
BackgroundCopyFileImpl
*
file
,
BackgroundCopyJobImpl
*
job
);
BOOL
transitionJobState
(
BackgroundCopyJobImpl
*
job
,
BG_JOB_STATE
from
,
BG_JOB_STATE
to
);
/* Little helper functions */
static
inline
WCHAR
*
co_strdupW
(
const
WCHAR
*
src
)
...
...
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