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
cf80f0ab
Commit
cf80f0ab
authored
Jul 23, 2000
by
Andreas Mohr
Committed by
Alexandre Julliard
Jul 23, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added InstallHinfSection stub.
parent
df96c979
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
setupx.spec
dlls/setupx/setupx.spec
+1
-1
setupx_main.c
dlls/setupx/setupx_main.c
+17
-0
No files found.
dlls/setupx/setupx.spec
View file @
cf80f0ab
...
@@ -211,7 +211,7 @@ type win16
...
@@ -211,7 +211,7 @@ type win16
523 stub DICONVERTDRIVERINFOTODRIVERNODE
523 stub DICONVERTDRIVERINFOTODRIVERNODE
525 stub FIRSTBOOTMOVETODOSSTART
525 stub FIRSTBOOTMOVETODOSSTART
526 stub DOSOPTENABLECURCFG
526 stub DOSOPTENABLECURCFG
527
stub INSTALLHINFSECTION
527
pascal InstallHinfSection(word word str word) InstallHinfSection16
528 stub SXMAKEUNCPATH
528 stub SXMAKEUNCPATH
529 stub SXISSBSSERVERFILE
529 stub SXISSBSSERVERFILE
530 stub SXFINDBATCHFILES
530 stub SXFINDBATCHFILES
...
...
dlls/setupx/setupx_main.c
View file @
cf80f0ab
...
@@ -32,3 +32,20 @@ DWORD WINAPI SURegQueryValueEx( HKEY hkey, LPSTR lpszValueName,
...
@@ -32,3 +32,20 @@ DWORD WINAPI SURegQueryValueEx( HKEY hkey, LPSTR lpszValueName,
return
RegQueryValueExA
(
hkey
,
lpszValueName
,
lpdwReserved
,
lpdwType
,
return
RegQueryValueExA
(
hkey
,
lpszValueName
,
lpdwReserved
,
lpdwType
,
lpbData
,
lpcbData
);
lpbData
,
lpcbData
);
}
}
/*
* hwnd = parent window
* hinst = instance of SETUPX.DLL
* lpszCmdLine = e.g. "DefaultInstall 132 C:\MYINSTALL\MYDEV.INF"
* Here "DefaultInstall" is the .inf file section to be installed (optional).
* 132 is the standard parameter, it seems.
* 133 means don't prompt user for reboot.
*
* nCmdShow = nCmdShow of CreateProcess
* FIXME: is the return type correct ?
*/
DWORD
WINAPI
InstallHinfSection16
(
HWND16
hwnd
,
HINSTANCE16
hinst
,
LPCSTR
lpszCmdLine
,
INT16
nCmdShow
)
{
FIXME
(
"(%04x, %04x, %s, %d), stub.
\n
"
,
hwnd
,
hinst
,
lpszCmdLine
,
nCmdShow
);
return
0
;
}
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