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
46cd0432
Commit
46cd0432
authored
Jun 22, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Jun 22, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some missing declarations.
parent
68ee20e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
2 deletions
+18
-2
atlbase.h
dlls/atl/atlbase.h
+18
-2
No files found.
dlls/atl/atlbase.h
View file @
46cd0432
...
...
@@ -18,6 +18,13 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE_ATLBASE_H__
#define __WINE_ATLBASE_H__
#define COBJMACROS
#include "atliface.h"
typedef
HRESULT
(
WINAPI
_ATL_CREATORFUNC
)(
void
*
pv
,
REFIID
riid
,
LPVOID
*
ppv
);
typedef
HRESULT
(
WINAPI
_ATL_CREATORARGFUNC
)(
void
*
pv
,
REFIID
riid
,
LPVOID
*
ppv
,
DWORD
dw
);
typedef
HRESULT
(
WINAPI
_ATL_MODULEFUNC
)(
DWORD
dw
);
...
...
@@ -134,9 +141,18 @@ struct _ATL_REGMAP_ENTRY
LPCOLESTR
szData
;
};
HRESULT
WINAPI
AtlAdvise
(
IUnknown
*
pUnkCP
,
IUnknown
*
pUnk
,
const
IID
*
iid
,
LPDWORD
dpw
);
HRESULT
WINAPI
AtlFreeMarshalStream
(
IStream
*
pStream
);
HRESULT
WINAPI
AtlInternalQueryInterface
(
LPVOID
pThis
,
const
_ATL_INTMAP_ENTRY
*
pEntries
,
REFIID
iid
,
LPVOID
*
ppvObject
);
HRESULT
WINAPI
AtlMarshalPtrInProc
(
IUnknown
*
pUnk
,
const
IID
*
iid
,
IStream
**
ppStream
);
HRESULT
WINAPI
AtlModuleInit
(
_ATL_MODULEA
*
pM
,
_ATL_OBJMAP_ENTRYA
*
p
,
HINSTANCE
h
);
HRESULT
WINAPI
AtlModuleRegisterClassObjects
(
_ATL_MODULEA
*
pM
,
DWORD
dwClsContext
,
DWORD
dwFlags
);
HRESULT
WINAPI
AtlModuleRegisterServer
(
_ATL_MODULEW
*
pM
,
BOOL
bRegTypeLib
,
const
CLSID
*
pCLSID
);
HRESULT
WINAPI
AtlModuleUnregisterServer
(
_ATL_MODULEW
*
pM
,
const
CLSID
*
pCLSID
);
HRESULT
WINAPI
AtlModuleUpdateRegistryFromResourceD
(
_ATL_MODULEW
*
pM
,
LPCOLESTR
lpszRes
,
BOOL
bRegister
,
struct
_ATL_REGMAP_ENTRY
*
pMapEntries
,
IRegistrar
*
pReg
);
HRESULT
WINAPI
AtlModuleUnregisterServerEx
(
_ATL_MODULEA
*
pM
,
BOOL
bUnRegTypeLib
,
const
CLSID
*
pCLSID
);
HRESULT
WINAPI
AtlModuleTerm
(
_ATL_MODULEA
*
pM
);
HRESULT
WINAPI
AtlInternalQueryInterface
(
LPVOID
pThis
,
const
_ATL_INTMAP_ENTRY
*
pEntries
,
REFIID
iid
,
LPVOID
*
ppvObject
);
HRESULT
WINAPI
AtlUnadvise
(
IUnknown
*
pUnkCP
,
const
IID
*
iid
,
DWORD
dw
);
HRESULT
WINAPI
AtlUnmarshalPtr
(
IStream
*
pStream
,
const
IID
*
iid
,
IUnknown
**
ppUnk
);
#endif
/* __WINE_ATLBASE_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