Module: wine Branch: master Commit: 47fdee6e92a6757b0469dce80211ed7c9246d9e5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=47fdee6e92a6757b0469dce802...
Author: Francois Gouget fgouget@free.fr Date: Tue Dec 6 17:38:29 2011 +0100
mscoree: Make CorDebugProcess_Create() static.
---
dlls/mscoree/cordebug.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/mscoree/cordebug.c b/dlls/mscoree/cordebug.c index cda35e9..da06f49 100644 --- a/dlls/mscoree/cordebug.c +++ b/dlls/mscoree/cordebug.c @@ -401,7 +401,7 @@ static const ICorDebugProcessVtbl cordebugprocessVtbl = { };
-HRESULT CorDebugProcess_Create(CorDebug *cordebug, IUnknown** ppUnk, LPPROCESS_INFORMATION lpProcessInformation) +static HRESULT CorDebugProcess_Create(CorDebug *cordebug, IUnknown** ppUnk, LPPROCESS_INFORMATION lpProcessInformation) { DebugProcess *This;