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
19672d71
Commit
19672d71
authored
Oct 26, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Oct 27, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add cmdtxt.idl.
parent
8b5431ad
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
74 additions
and
0 deletions
+74
-0
usrmarshal.c
dlls/msdaps/usrmarshal.c
+27
-0
Makefile.in
include/Makefile.in
+1
-0
cmdtxt.idl
include/cmdtxt.idl
+44
-0
oledb.idl
include/oledb.idl
+1
-0
make_makefiles
tools/make_makefiles
+1
-0
No files found.
dlls/msdaps/usrmarshal.c
View file @
19672d71
...
...
@@ -645,3 +645,30 @@ HRESULT __RPC_STUB ICommand_GetDBSession_Stub(ICommand* This, REFIID riid, IUnkn
FIXME
(
"(%p)->(%s, %p, %p): stub
\n
"
,
This
,
debugstr_guid
(
riid
),
ppSession
,
ppErrorInfoRem
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
ICommandText_GetCommandText_Proxy
(
ICommandText
*
This
,
GUID
*
pguidDialect
,
LPOLESTR
*
ppwszCommand
)
{
FIXME
(
"(%p)->(%p, %p): stub
\n
"
,
This
,
pguidDialect
,
ppwszCommand
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
ICommandText_GetCommandText_Stub
(
ICommandText
*
This
,
GUID
*
pguidDialect
,
LPOLESTR
*
ppwszCommand
,
IErrorInfo
**
ppErrorInfoRem
)
{
FIXME
(
"(%p)->(%p, %p, %p): stub
\n
"
,
This
,
pguidDialect
,
ppwszCommand
,
ppErrorInfoRem
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
ICommandText_SetCommandText_Proxy
(
ICommandText
*
This
,
REFGUID
rguidDialect
,
LPCOLESTR
pwszCommand
)
{
FIXME
(
"(%p)->(%s, %s): stub
\n
"
,
This
,
debugstr_guid
(
rguidDialect
),
debugstr_w
(
pwszCommand
));
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
ICommandText_SetCommandText_Stub
(
ICommandText
*
This
,
REFGUID
rguidDialect
,
LPCOLESTR
pwszCommand
,
IErrorInfo
**
ppErrorInfoRem
)
{
FIXME
(
"(%p)->(%s, %s, %p): stub
\n
"
,
This
,
debugstr_guid
(
rguidDialect
),
debugstr_w
(
pwszCommand
),
ppErrorInfoRem
);
return
E_NOTIMPL
;
}
include/Makefile.in
View file @
19672d71
...
...
@@ -118,6 +118,7 @@ SRCDIR_INCLUDES = \
cierror.h
\
clusapi.h
\
cmdbas.idl
\
cmdtxt.idl
\
commctrl.h
\
commctrl.rh
\
commdlg.h
\
...
...
include/cmdtxt.idl
0 → 100644
View file @
19672d71
/*
*
Copyright
(
C
)
2009
Huw
Davies
*
*
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
*/
[
object
,
uuid
(
0
c733a27
-
2
a1c
-
11
ce
-
ade5
-
00
aa0044773d
),
pointer_default
(
unique
)
]
interface
ICommandText
:
ICommand
{
[
local
]
HRESULT
GetCommandText
(
[
in
,
out
/*
,
annotation
(
"__inout_opt"
)
*/
]
GUID
*
pguidDialect
,
[
out
/*
,
annotation
(
"__deref_out"
)
*/
]
LPOLESTR
*
ppwszCommand
)
;
[
call_as
(
GetCommandText
)
]
HRESULT
RemoteGetCommandText
(
[
in
,
out
,
unique
]
GUID
*
pguidDialect
,
[
out
]
LPOLESTR
*
ppwszCommand
,
[
out
]
IErrorInfo
**
ppErrorInfoRem
)
;
[
local
]
HRESULT
SetCommandText
(
[
in
]
REFGUID
rguidDialect
,
[
in
,
unique
/*
,
annotation
(
"__in_z_opt"
)
*/
]
LPCOLESTR
pwszCommand
)
;
[
call_as
(
SetCommandText
)
]
HRESULT
RemoteSetCommandText
(
[
in
]
REFGUID
rguidDialect
,
[
in
,
unique
]
LPCOLESTR
pwszCommand
,
[
out
]
IErrorInfo
**
ppErrorInfoRem
)
;
}
;
include/oledb.idl
View file @
19672d71
...
...
@@ -43,6 +43,7 @@ typedef LONG DB_LPARAMS;
#
include
"access.idl"
#
include
"cmdbas.idl"
#
include
"cmdtxt.idl"
#
include
"dbccmd.idl"
#
include
"dbcses.idl"
#
include
"dbprop.idl"
...
...
tools/make_makefiles
View file @
19672d71
...
...
@@ -114,6 +114,7 @@ my %private_idl_headers = (
"axextend.idl"
=>
1
,
"binres.idl"
=>
1
,
"cmdbas.idl"
=>
1
,
"cmdtxt.idl"
=>
1
,
"crtrow.idl"
=>
1
,
"dbccmd.idl"
=>
1
,
"dbcses.idl"
=>
1
,
...
...
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