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
acee9cde
Commit
acee9cde
authored
Nov 21, 2010
by
Volodymyr M. Shcherbyna
Committed by
Alexandre Julliard
Nov 26, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbgeng: Add initial stub dll implementation.
parent
e7bf31c4
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
115 additions
and
0 deletions
+115
-0
configure
configure
+1
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/dbgeng/Makefile.in
+6
-0
dbgeng.c
dlls/dbgeng/dbgeng.c
+104
-0
dbgeng.spec
dlls/dbgeng/dbgeng.spec
+3
-0
No files found.
configure
View file @
acee9cde
...
...
@@ -14823,6 +14823,7 @@ wine_fn_config_dll d3dx9_42 enable_d3dx9_42
wine_fn_config_dll d3dx9_43 enable_d3dx9_43
wine_fn_config_dll d3dxof enable_d3dxof d3dxof
wine_fn_config_test dlls/d3dxof/tests d3dxof_test
wine_fn_config_dll dbgeng enable_dbgeng dbgeng
wine_fn_config_dll dbghelp enable_dbghelp dbghelp
wine_fn_config_dll dciman32 enable_dciman32 dciman32
wine_fn_config_dll ddeml.dll16 enable_win16
...
...
configure.ac
View file @
acee9cde
...
...
@@ -2400,6 +2400,7 @@ WINE_CONFIG_DLL(d3dx9_42)
WINE_CONFIG_DLL(d3dx9_43)
WINE_CONFIG_DLL(d3dxof,,[d3dxof])
WINE_CONFIG_TEST(dlls/d3dxof/tests)
WINE_CONFIG_DLL(dbgeng,,[dbgeng])
WINE_CONFIG_DLL(dbghelp,,[dbghelp])
WINE_CONFIG_DLL(dciman32,,[dciman32])
WINE_CONFIG_DLL(ddeml.dll16,enable_win16)
...
...
dlls/dbgeng/Makefile.in
0 → 100644
View file @
acee9cde
MODULE
=
dbgeng.dll
IMPORTLIB
=
dbgeng
C_SRCS
=
dbgeng.c
@MAKE_DLL_RULES@
dlls/dbgeng/dbgeng.c
0 → 100644
View file @
acee9cde
/*
* Support for Microsoft Debugging Extension API
*
* Copyright (C) 2010 Volodymyr Shcherbyna
*
* 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 <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winternl.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
dbgeng
);
/************************************************************
* DebugExtensionInitialize (DBGENG.@)
*
* Initializing Debug Engine
*
* PARAMS
* pVersion [O] Recieving the version of extension
* pFlags [O] Reserved
*
* RETURNS
* Success: S_OK
* Failure: Anything other than S_OK
*
* BUGS
* Unimplemented
*/
HRESULT
WINAPI
DebugExtensionInitialize
(
ULONG
*
pVersion
,
ULONG
*
pFlags
)
{
FIXME
(
"(%p,%p): stub
\n
"
,
pVersion
,
pFlags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
E_NOTIMPL
;
}
/************************************************************
* DebugCreate (DBGENG.@)
*
* Creating Debug Engine client object
*
* PARAMS
* InterfaceId [I] Interface Id of debugger client
* pInterface [O] Pointer to interface as requested via InterfaceId
*
* RETURNS
* Success: S_OK
* Failure: Anything other than S_OK
*
* BUGS
* Unimplemented
*/
HRESULT
WINAPI
DebugCreate
(
REFIID
InterfaceId
,
PVOID
*
pInterface
)
{
FIXME
(
"(%p,%p): stub
\n
"
,
InterfaceId
,
pInterface
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
E_NOTIMPL
;
}
/************************************************************
* DebugConnect (DBGENG.@)
*
* Creating Debug Engine client object and connecting it to remote host
*
* PARAMS
* RemoteOptions [I] Options which define how debugger engine connects to remote host
* InterfaceId [I] Interface Id of debugger client
* pInterface [O] Pointer to interface as requested via InterfaceId
*
* RETURNS
* Success: S_OK
* Failure: Anything other than S_OK
*
* BUGS
* Unimplemented
*/
HRESULT
DebugConnect
(
PCSTR
RemoteOptions
,
REFIID
InterfaceId
,
PVOID
*
pInterface
)
{
FIXME
(
"(%p,%p,%p): stub
\n
"
,
RemoteOptions
,
InterfaceId
,
pInterface
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
E_NOTIMPL
;
}
dlls/dbgeng/dbgeng.spec
0 → 100644
View file @
acee9cde
@ stdcall DebugExtensionInitialize(ptr ptr)
@ stdcall DebugCreate(ptr ptr)
@ stdcall DebugConnect(ptr ptr ptr)
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