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
0be88a04
Commit
0be88a04
authored
Oct 18, 2005
by
Vincent Béron
Committed by
Alexandre Julliard
Oct 18, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct AtlModuleAddTermFunc prototype.
parent
6727c52f
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
atl_main.c
dlls/atl/atl_main.c
+1
-1
atlbase.h
dlls/atl/atlbase.h
+2
-2
win32.api
tools/winapi/win32.api
+1
-0
No files found.
dlls/atl/atl_main.c
View file @
0be88a04
...
@@ -107,7 +107,7 @@ HRESULT WINAPI AtlModuleTerm(_ATL_MODULEA* pM)
...
@@ -107,7 +107,7 @@ HRESULT WINAPI AtlModuleTerm(_ATL_MODULEA* pM)
return
S_OK
;
return
S_OK
;
}
}
HRESULT
WINAPI
AtlModuleAddTermFunc
(
_ATL_MODULEW
*
pM
,
_ATL_TERMFUNC
pFunc
,
DWORD
dw
)
HRESULT
WINAPI
AtlModuleAddTermFunc
(
_ATL_MODULEW
*
pM
,
_ATL_TERMFUNC
*
pFunc
,
DWORD_PTR
dw
)
{
{
_ATL_TERMFUNC_ELEM
*
termfunc_elem
;
_ATL_TERMFUNC_ELEM
*
termfunc_elem
;
...
...
dlls/atl/atlbase.h
View file @
0be88a04
...
@@ -63,7 +63,7 @@ typedef struct _ATL_OBJMAP_ENTRYW_TAG
...
@@ -63,7 +63,7 @@ typedef struct _ATL_OBJMAP_ENTRYW_TAG
typedef
struct
_ATL_TERMFUNC_ELEM_TAG
typedef
struct
_ATL_TERMFUNC_ELEM_TAG
{
{
_ATL_TERMFUNC
*
pFunc
;
_ATL_TERMFUNC
*
pFunc
;
DWORD
dw
;
DWORD
_PTR
dw
;
struct
_ATL_TERMFUNC_ELEM_TAG
*
pNext
;
struct
_ATL_TERMFUNC_ELEM_TAG
*
pNext
;
}
_ATL_TERMFUNC_ELEM
;
}
_ATL_TERMFUNC_ELEM
;
...
@@ -145,7 +145,7 @@ HRESULT WINAPI AtlAdvise(IUnknown *pUnkCP, IUnknown *pUnk, const IID * iid, LPDW
...
@@ -145,7 +145,7 @@ HRESULT WINAPI AtlAdvise(IUnknown *pUnkCP, IUnknown *pUnk, const IID * iid, LPDW
HRESULT
WINAPI
AtlFreeMarshalStream
(
IStream
*
pStream
);
HRESULT
WINAPI
AtlFreeMarshalStream
(
IStream
*
pStream
);
HRESULT
WINAPI
AtlInternalQueryInterface
(
LPVOID
pThis
,
const
_ATL_INTMAP_ENTRY
*
pEntries
,
REFIID
iid
,
LPVOID
*
ppvObject
);
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
AtlMarshalPtrInProc
(
IUnknown
*
pUnk
,
const
IID
*
iid
,
IStream
**
ppStream
);
HRESULT
WINAPI
AtlModuleAddTermFunc
(
_ATL_MODULEW
*
pM
,
_ATL_TERMFUNC
pFunc
,
DWORD
dw
);
HRESULT
WINAPI
AtlModuleAddTermFunc
(
_ATL_MODULEW
*
pM
,
_ATL_TERMFUNC
*
pFunc
,
DWORD_PTR
dw
);
HRESULT
WINAPI
AtlModuleInit
(
_ATL_MODULEA
*
pM
,
_ATL_OBJMAP_ENTRYA
*
p
,
HINSTANCE
h
);
HRESULT
WINAPI
AtlModuleInit
(
_ATL_MODULEA
*
pM
,
_ATL_OBJMAP_ENTRYA
*
p
,
HINSTANCE
h
);
HRESULT
WINAPI
AtlModuleRegisterClassObjects
(
_ATL_MODULEA
*
pM
,
DWORD
dwClsContext
,
DWORD
dwFlags
);
HRESULT
WINAPI
AtlModuleRegisterClassObjects
(
_ATL_MODULEA
*
pM
,
DWORD
dwClsContext
,
DWORD
dwFlags
);
HRESULT
WINAPI
AtlModuleRegisterServer
(
_ATL_MODULEW
*
pM
,
BOOL
bRegTypeLib
,
const
CLSID
*
pCLSID
);
HRESULT
WINAPI
AtlModuleRegisterServer
(
_ATL_MODULEW
*
pM
,
BOOL
bRegTypeLib
,
const
CLSID
*
pCLSID
);
...
...
tools/winapi/win32.api
View file @
0be88a04
...
@@ -234,6 +234,7 @@ _ATL_INTMAP_ENTRY *
...
@@ -234,6 +234,7 @@ _ATL_INTMAP_ENTRY *
_ATL_MODULEA *
_ATL_MODULEA *
_ATL_MODULEW *
_ATL_MODULEW *
_ATL_OBJMAP_ENTRYA *
_ATL_OBJMAP_ENTRYA *
_ATL_TERMFUNC *
CLSID *
CLSID *
IID *
IID *
IRegistrar *
IRegistrar *
...
...
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