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
43742154
Commit
43742154
authored
May 13, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
May 24, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qmgr: Mark internal symbols with hidden visibility.
parent
9b399952
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
qmgr.h
dlls/qmgr/qmgr.h
+11
-11
No files found.
dlls/qmgr/qmgr.h
View file @
43742154
...
...
@@ -93,23 +93,23 @@ typedef struct
const
IClassFactoryVtbl
*
lpVtbl
;
}
ClassFactoryImpl
;
extern
HANDLE
stop_event
;
extern
ClassFactoryImpl
BITS_ClassFactory
;
extern
BackgroundCopyManagerImpl
globalMgr
;
extern
HANDLE
stop_event
DECLSPEC_HIDDEN
;
extern
ClassFactoryImpl
BITS_ClassFactory
DECLSPEC_HIDDEN
;
extern
BackgroundCopyManagerImpl
globalMgr
DECLSPEC_HIDDEN
;
HRESULT
BackgroundCopyManagerConstructor
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
HRESULT
BackgroundCopyManagerConstructor
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
BackgroundCopyJobConstructor
(
LPCWSTR
displayName
,
BG_JOB_TYPE
type
,
GUID
*
pJobId
,
LPVOID
*
ppObj
);
GUID
*
pJobId
,
LPVOID
*
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
EnumBackgroundCopyJobsConstructor
(
LPVOID
*
ppObj
,
IBackgroundCopyManager
*
copyManager
);
IBackgroundCopyManager
*
copyManager
)
DECLSPEC_HIDDEN
;
HRESULT
BackgroundCopyFileConstructor
(
BackgroundCopyJobImpl
*
owner
,
LPCWSTR
remoteName
,
LPCWSTR
localName
,
LPVOID
*
ppObj
);
LPVOID
*
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
EnumBackgroundCopyFilesConstructor
(
LPVOID
*
ppObj
,
IBackgroundCopyJob2
*
copyJob
);
DWORD
WINAPI
fileTransfer
(
void
*
param
);
void
processJob
(
BackgroundCopyJobImpl
*
job
);
BOOL
processFile
(
BackgroundCopyFileImpl
*
file
,
BackgroundCopyJobImpl
*
job
);
IBackgroundCopyJob2
*
copyJob
)
DECLSPEC_HIDDEN
;
DWORD
WINAPI
fileTransfer
(
void
*
param
)
DECLSPEC_HIDDEN
;
void
processJob
(
BackgroundCopyJobImpl
*
job
)
DECLSPEC_HIDDEN
;
BOOL
processFile
(
BackgroundCopyFileImpl
*
file
,
BackgroundCopyJobImpl
*
job
)
DECLSPEC_HIDDEN
;
/* Little helper functions */
static
inline
char
*
...
...
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