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
702e6d8d
Commit
702e6d8d
authored
Dec 19, 2007
by
Roy Shea
Committed by
Alexandre Julliard
Dec 20, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qmgr: AddRef, QueryInterface, and stub functions for queue manager interface.
parent
3b244b95
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
197 additions
and
1 deletion
+197
-1
Makefile.in
dlls/qmgr/Makefile.in
+2
-1
qmgr.c
dlls/qmgr/qmgr.c
+156
-0
qmgr.h
dlls/qmgr/qmgr.h
+39
-0
No files found.
dlls/qmgr/Makefile.in
View file @
702e6d8d
...
...
@@ -4,9 +4,10 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
qmgr.dll
IMPORTS
=
kernel32
EXTRALIBS
=
EXTRALIBS
=
-luuid
C_SRCS
=
\
qmgr.c
\
qmgr_main.c
IDL_I_SRCS
=
qmgr_local.idl
...
...
dlls/qmgr/qmgr.c
0 → 100644
View file @
702e6d8d
/*
* Queue Manager (BITS) core functions
*
* Copyright 2007 Google (Roy Shea)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "qmgr.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
qmgr
);
/* Destructor for instances of background copy manager */
static
void
BackgroundCopyManagerDestructor
(
BackgroundCopyManagerImpl
*
This
)
{
TRACE
(
"%p
\n
"
,
This
);
HeapFree
(
GetProcessHeap
(),
0
,
This
);
}
/* Add a reference to the iface pointer */
static
ULONG
WINAPI
BITS_IBackgroundCopyManager_AddRef
(
IBackgroundCopyManager
*
iface
)
{
BackgroundCopyManagerImpl
*
This
=
(
BackgroundCopyManagerImpl
*
)
iface
;
ULONG
ref
;
TRACE
(
"
\n
"
);
ref
=
InterlockedIncrement
(
&
This
->
ref
);
return
ref
;
}
/* Attempt to provide a new interface to interact with iface */
static
HRESULT
WINAPI
BITS_IBackgroundCopyManager_QueryInterface
(
IBackgroundCopyManager
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObject
)
{
BackgroundCopyManagerImpl
*
This
=
(
BackgroundCopyManagerImpl
*
)
iface
;
TRACE
(
"IID: %s
\n
"
,
debugstr_guid
(
riid
));
if
(
IsEqualGUID
(
riid
,
&
IID_IUnknown
)
||
IsEqualGUID
(
riid
,
&
IID_IBackgroundCopyManager
))
{
*
ppvObject
=
&
This
->
lpVtbl
;
BITS_IBackgroundCopyManager_AddRef
(
iface
);
return
S_OK
;
}
*
ppvObject
=
NULL
;
return
E_NOINTERFACE
;
}
/* Release an interface to iface */
static
ULONG
WINAPI
BITS_IBackgroundCopyManager_Release
(
IBackgroundCopyManager
*
iface
)
{
BackgroundCopyManagerImpl
*
This
=
(
BackgroundCopyManagerImpl
*
)
iface
;
ULONG
ref
;
TRACE
(
"
\n
"
);
ref
=
InterlockedDecrement
(
&
This
->
ref
);
if
(
ref
==
0
)
{
BackgroundCopyManagerDestructor
(
This
);
}
return
ref
;
}
/*** IBackgroundCopyManager interface methods ***/
static
HRESULT
WINAPI
BITS_IBackgroundCopyManager_CreateJob
(
IBackgroundCopyManager
*
iface
,
LPCWSTR
DisplayName
,
BG_JOB_TYPE
Type
,
GUID
*
pJobId
,
IBackgroundCopyJob
**
ppJob
)
{
FIXME
(
"Not implemented
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
BITS_IBackgroundCopyManager_GetJob
(
IBackgroundCopyManager
*
iface
,
REFGUID
jobID
,
IBackgroundCopyJob
**
ppJob
)
{
FIXME
(
"Not implemented
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
BITS_IBackgroundCopyManager_EnumJobs
(
IBackgroundCopyManager
*
iface
,
DWORD
dwFlags
,
IEnumBackgroundCopyJobs
**
ppEnum
)
{
FIXME
(
"Not implemented
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
BITS_IBackgroundCopyManager_GetErrorDescription
(
IBackgroundCopyManager
*
iface
,
HRESULT
hResult
,
DWORD
LanguageId
,
LPWSTR
*
pErrorDescription
)
{
FIXME
(
"Not implemented
\n
"
);
return
E_NOTIMPL
;
}
static
const
IBackgroundCopyManagerVtbl
BITS_IBackgroundCopyManager_Vtbl
=
{
BITS_IBackgroundCopyManager_QueryInterface
,
BITS_IBackgroundCopyManager_AddRef
,
BITS_IBackgroundCopyManager_Release
,
BITS_IBackgroundCopyManager_CreateJob
,
BITS_IBackgroundCopyManager_GetJob
,
BITS_IBackgroundCopyManager_EnumJobs
,
BITS_IBackgroundCopyManager_GetErrorDescription
};
/* Constructor for instances of background copy manager */
HRESULT
BackgroundCopyManagerConstructor
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
)
{
BackgroundCopyManagerImpl
*
This
;
TRACE
(
"(%p,%p)
\n
"
,
pUnkOuter
,
ppObj
);
This
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
*
This
));
if
(
!
This
)
{
return
E_OUTOFMEMORY
;
}
This
->
lpVtbl
=
&
BITS_IBackgroundCopyManager_Vtbl
;
This
->
ref
=
1
;
*
ppObj
=
&
This
->
lpVtbl
;
return
S_OK
;
}
dlls/qmgr/qmgr.h
0 → 100644
View file @
702e6d8d
/*
* Queue Manager definitions
*
* Copyright 2007 Google (Roy Shea)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __QMGR_H__
#define __QMGR_H__
#include "windef.h"
#include "objbase.h"
#define COBJMACROS
#include "bits.h"
/* Background copy manager vtbl and related data */
typedef
struct
{
const
IBackgroundCopyManagerVtbl
*
lpVtbl
;
LONG
ref
;
}
BackgroundCopyManagerImpl
;
HRESULT
BackgroundCopyManagerConstructor
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
);
#endif
/* __QMGR_H__ */
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