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
860a6d76
Commit
860a6d76
authored
Nov 09, 2023
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 22, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl: Stub EtwRegisterClassicProvider() and EtwUnregister().
parent
b313c409
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+20
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+2
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
860a6d76
...
@@ -27,6 +27,7 @@
...
@@ -27,6 +27,7 @@
#include "excpt.h"
#include "excpt.h"
#include "winreg.h"
#include "winreg.h"
#include "ntsecapi.h"
#include "ntsecapi.h"
#include "evntprov.h"
#include "ddk/csq.h"
#include "ddk/csq.h"
#include "wine/server.h"
#include "wine/server.h"
#include "wine/heap.h"
#include "wine/heap.h"
...
@@ -4599,6 +4600,25 @@ void WINAPI KeLowerIrql(KIRQL new)
...
@@ -4599,6 +4600,25 @@ void WINAPI KeLowerIrql(KIRQL new)
#endif
#endif
typedef
void
(
WINAPI
*
PETW_CLASSIC_CALLBACK
)(
const
GUID
*
guid
,
UCHAR
control_code
,
void
*
enable_context
,
void
*
callback_context
);
NTSTATUS
WINAPI
EtwRegisterClassicProvider
(
const
GUID
*
provider
,
ULONG
type
,
PETW_CLASSIC_CALLBACK
callback
,
void
*
context
,
REGHANDLE
*
handle
)
{
FIXME
(
"provider %s, type %lu, enable_callback %p, context %p, handle %p
\n
"
,
debugstr_guid
(
provider
),
type
,
callback
,
context
,
handle
);
*
handle
=
0xdeadbeef
;
return
STATUS_SUCCESS
;
}
NTSTATUS
WINAPI
EtwUnregister
(
REGHANDLE
handle
)
{
FIXME
(
"handle %I64x
\n
"
,
handle
);
return
STATUS_SUCCESS
;
}
/*****************************************************
/*****************************************************
* DllMain
* DllMain
*/
*/
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
860a6d76
@ stdcall EtwRegisterClassicProvider(ptr long ptr ptr ptr)
@ stdcall EtwUnregister(int64)
@ stdcall -arch=!i386 ExAcquireFastMutex(ptr)
@ stdcall -arch=!i386 ExAcquireFastMutex(ptr)
@ stdcall -fastcall ExAcquireFastMutexUnsafe(ptr)
@ stdcall -fastcall ExAcquireFastMutexUnsafe(ptr)
@ stub ExAcquireRundownProtection
@ stub ExAcquireRundownProtection
...
...
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