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
671412d3
Commit
671412d3
authored
Jul 25, 2023
by
Paul Gofman
Committed by
Alexandre Julliard
Jul 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nsi: Add stubs for NsiRequestChangeNotification[Ex].
parent
a577d28a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
2 deletions
+36
-2
nsi.c
dlls/nsi/nsi.c
+22
-0
nsi.spec
dlls/nsi/nsi.spec
+2
-2
nsi.h
include/wine/nsi.h
+12
-0
No files found.
dlls/nsi/nsi.c
View file @
671412d3
...
...
@@ -307,3 +307,25 @@ err:
CloseHandle
(
device
);
return
err
;
}
DWORD
WINAPI
NsiRequestChangeNotification
(
DWORD
unk
,
const
NPI_MODULEID
*
module
,
DWORD
table
,
OVERLAPPED
*
ovr
,
HANDLE
*
handle
)
{
struct
nsi_request_change_notification_ex
params
;
TRACE
(
"%lu %p %lu %p %p stub.
\n
"
,
unk
,
module
,
table
,
ovr
,
handle
);
params
.
unk
=
unk
;
params
.
module
=
module
;
params
.
table
=
table
;
params
.
ovr
=
ovr
;
params
.
handle
=
handle
;
return
NsiRequestChangeNotificationEx
(
&
params
);
}
DWORD
WINAPI
NsiRequestChangeNotificationEx
(
struct
nsi_request_change_notification_ex
*
params
)
{
FIXME
(
"%p stub.
\n
"
,
params
);
return
ERROR_NOT_SUPPORTED
;
}
dlls/nsi/nsi.spec
View file @
671412d3
...
...
@@ -16,8 +16,8 @@
@ stdcall NsiGetParameterEx(ptr)
@ stub NsiRegisterChangeNotification
@ stub NsiRegisterChangeNotificationEx
@ st
ub NsiRequestChangeNotification
@ st
ub NsiRequestChangeNotificationEx
@ st
dcall NsiRequestChangeNotification(long ptr long ptr ptr)
@ st
dcall NsiRequestChangeNotificationEx(ptr)
@ stub NsiSetAllParameters
@ stub NsiSetAllParametersEx
@ stub NsiSetAllPersistentParametersWithMask
...
...
include/wine/nsi.h
View file @
671412d3
...
...
@@ -492,6 +492,15 @@ struct nsi_get_parameter_ex
UINT
data_offset
;
};
struct
nsi_request_change_notification_ex
{
DWORD
unk
;
const
NPI_MODULEID
*
module
;
UINT_PTR
table
;
OVERLAPPED
*
ovr
;
HANDLE
*
handle
;
};
DWORD
WINAPI
NsiAllocateAndGetTable
(
DWORD
unk
,
const
NPI_MODULEID
*
module
,
DWORD
table
,
void
**
key_data
,
DWORD
key_size
,
void
**
rw_data
,
DWORD
rw_size
,
void
**
dynamic_data
,
DWORD
dynamic_size
,
void
**
static_data
,
DWORD
static_size
,
DWORD
*
count
,
DWORD
unk2
);
...
...
@@ -508,5 +517,8 @@ DWORD WINAPI NsiGetAllParametersEx( struct nsi_get_all_parameters_ex *params );
DWORD
WINAPI
NsiGetParameter
(
DWORD
unk
,
const
NPI_MODULEID
*
module
,
DWORD
table
,
const
void
*
key
,
DWORD
key_size
,
DWORD
param_type
,
void
*
data
,
DWORD
data_size
,
DWORD
data_offset
);
DWORD
WINAPI
NsiGetParameterEx
(
struct
nsi_get_parameter_ex
*
params
);
DWORD
WINAPI
NsiRequestChangeNotification
(
DWORD
unk
,
const
NPI_MODULEID
*
module
,
DWORD
table
,
OVERLAPPED
*
ovr
,
HANDLE
*
handle
);
DWORD
WINAPI
NsiRequestChangeNotificationEx
(
struct
nsi_request_change_notification_ex
*
params
);
#endif
/* __WINE_NSI_H */
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