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
a9ae8dbf
Commit
a9ae8dbf
authored
Apr 21, 2015
by
Stefan Leichter
Committed by
Alexandre Julliard
Apr 22, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add stub for WinSqmIsOptedIn.
parent
11af7fda
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
misc.c
dlls/ntdll/misc.c
+10
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-0
No files found.
dlls/ntdll/misc.c
View file @
a9ae8dbf
...
...
@@ -31,6 +31,7 @@
#include "wine/debug.h"
#include "ntdll_misc.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ntdll
);
LPCSTR
debugstr_ObjectAttributes
(
const
OBJECT_ATTRIBUTES
*
oa
)
{
...
...
@@ -325,3 +326,12 @@ void * __cdecl _lfind( const void *key, const void *base, unsigned int *nmemb,
return
(
char
*
)
base
+
(
size
*
i
);
return
NULL
;
}
/*********************************************************************
* WinSqmIsOptedIn (NTDLL.@)
*/
BOOL
WINAPI
WinSqmIsOptedIn
(
void
)
{
FIXME
(
"() stub
\n
"
);
return
FALSE
;
}
dlls/ntdll/ntdll.spec
View file @
a9ae8dbf
...
...
@@ -969,6 +969,7 @@
@ stdcall RtlxUnicodeStringToAnsiSize(ptr) RtlUnicodeStringToAnsiSize
@ stdcall RtlxUnicodeStringToOemSize(ptr) RtlUnicodeStringToOemSize
@ stdcall -ret64 VerSetConditionMask(int64 long long)
@ stdcall WinSqmIsOptedIn()
@ stdcall ZwAcceptConnectPort(ptr long ptr long long ptr) NtAcceptConnectPort
@ stdcall ZwAccessCheck(ptr long long ptr ptr ptr ptr ptr) NtAccessCheck
@ stdcall ZwAccessCheckAndAuditAlarm(ptr long ptr ptr ptr long ptr long ptr ptr ptr) NtAccessCheckAndAuditAlarm
...
...
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