Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
69008be6
Commit
69008be6
authored
11 years ago
by
Nikolay Sivov
Committed by
Alexandre Julliard
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msdaps: Implement IRowsetNotify stub/proxy methods.
parent
3fd07694
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/msdaps/usrmarshal.c
+12
-12
12 additions, 12 deletions
dlls/msdaps/usrmarshal.c
with
12 additions
and
12 deletions
dlls/msdaps/usrmarshal.c
+
12
−
12
View file @
69008be6
...
...
@@ -971,39 +971,39 @@ HRESULT __RPC_STUB IDBAsynchStatus_GetStatus_Stub(IDBAsynchStatus* This, HCHAPTE
HRESULT
CALLBACK
IRowsetNotify_OnRowChange_Proxy
(
IRowsetNotify
*
This
,
IRowset
*
rowset
,
DBCOUNTITEM
rows
,
HROW
*
hrows
,
DBREASON
reason
,
DBEVENTPHASE
phase
,
BOOL
cantdeny
)
{
FIXM
E
(
"(%p)->(%p %ld %p %d %d %d)
: stub
\n
"
,
This
,
rowset
,
rows
,
hrows
,
reason
,
phase
,
cantdeny
);
return
E_NOTIMPL
;
TRAC
E
(
"(%p)->(%p %ld %p %d %d %d)
\n
"
,
This
,
rowset
,
rows
,
hrows
,
reason
,
phase
,
cantdeny
);
return
IRowsetNotify_RemoteOnRowChange_Proxy
(
This
,
rowset
,
rows
,
hrows
,
reason
,
phase
,
cantdeny
)
;
}
HRESULT
__RPC_STUB
IRowsetNotify_OnRowChange_Stub
(
IRowsetNotify
*
This
,
IRowset
*
rowset
,
DBCOUNTITEM
rows
,
HROW
*
hrows
,
DBREASON
reason
,
DBEVENTPHASE
phase
,
BOOL
cantdeny
)
{
FIXM
E
(
"(%p)->(%p %ld %p %d %d %d)
: stub
\n
"
,
This
,
rowset
,
rows
,
hrows
,
reason
,
phase
,
cantdeny
);
return
E_NOTIMPL
;
TRAC
E
(
"(%p)->(%p %ld %p %d %d %d)
\n
"
,
This
,
rowset
,
rows
,
hrows
,
reason
,
phase
,
cantdeny
);
return
IRowsetNotify_OnRowChange
(
This
,
rowset
,
rows
,
hrows
,
reason
,
phase
,
cantdeny
)
;
}
HRESULT
CALLBACK
IRowsetNotify_OnFieldChange_Proxy
(
IRowsetNotify
*
This
,
IRowset
*
rowset
,
HROW
row
,
DBORDINAL
ccols
,
DBORDINAL
*
columns
,
DBREASON
reason
,
DBEVENTPHASE
phase
,
BOOL
cantdeny
)
{
FIXM
E
(
"(%p)->(%p %lx %ld %p %d %d %d)
: stub
\n
"
,
This
,
rowset
,
row
,
ccols
,
columns
,
reason
,
phase
,
cantdeny
);
return
E_NOTIMPL
;
TRAC
E
(
"(%p)->(%p %lx %ld %p %d %d %d)
\n
"
,
This
,
rowset
,
row
,
ccols
,
columns
,
reason
,
phase
,
cantdeny
);
return
IRowsetNotify_RemoteOnFieldChange_Proxy
(
This
,
rowset
,
row
,
ccols
,
columns
,
reason
,
phase
,
cantdeny
)
;
}
HRESULT
__RPC_STUB
IRowsetNotify_OnFieldChange_Stub
(
IRowsetNotify
*
This
,
IRowset
*
rowset
,
HROW
row
,
DBORDINAL
ccols
,
DBORDINAL
*
columns
,
DBREASON
reason
,
DBEVENTPHASE
phase
,
BOOL
cantdeny
)
{
FIXM
E
(
"(%p)->(%p %lx %ld %p %d %d %d)
: stub
\n
"
,
This
,
rowset
,
row
,
ccols
,
columns
,
reason
,
phase
,
cantdeny
);
return
E_NOTIMPL
;
TRAC
E
(
"(%p)->(%p %lx %ld %p %d %d %d)
\n
"
,
This
,
rowset
,
row
,
ccols
,
columns
,
reason
,
phase
,
cantdeny
);
return
IRowsetNotify_OnFieldChange
(
This
,
rowset
,
row
,
ccols
,
columns
,
reason
,
phase
,
cantdeny
)
;
}
HRESULT
CALLBACK
IRowsetNotify_OnRowsetChange_Proxy
(
IRowsetNotify
*
This
,
IRowset
*
rowset
,
DBREASON
reason
,
DBEVENTPHASE
phase
,
BOOL
cantdeny
)
{
FIXM
E
(
"(%p)->(%p %d %d %d)
: stub
\n
"
,
This
,
rowset
,
reason
,
phase
,
cantdeny
);
return
E_NOTIMPL
;
TRAC
E
(
"(%p)->(%p %d %d %d)
\n
"
,
This
,
rowset
,
reason
,
phase
,
cantdeny
);
return
IRowsetNotify_RemoteOnRowsetChange_Proxy
(
This
,
rowset
,
reason
,
phase
,
cantdeny
)
;
}
HRESULT
__RPC_STUB
IRowsetNotify_OnRowsetChange_Stub
(
IRowsetNotify
*
This
,
IRowset
*
rowset
,
DBREASON
reason
,
DBEVENTPHASE
phase
,
BOOL
cantdeny
)
{
FIXM
E
(
"(%p)->(%p %d %d %d)
: stub
\n
"
,
This
,
rowset
,
reason
,
phase
,
cantdeny
);
return
E_NOTIMPL
;
TRAC
E
(
"(%p)->(%p %d %d %d)
\n
"
,
This
,
rowset
,
reason
,
phase
,
cantdeny
);
return
IRowsetNotify_OnRowsetChange
(
This
,
rowset
,
reason
,
phase
,
cantdeny
)
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment