Commit 93fc6d45 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

advpack: Fix the documentation for the cmdline parameter of LaunchInfSection/Ex.

parent 038e604f
...@@ -110,16 +110,22 @@ HRESULT WINAPI ExecuteCabA( HWND hwnd, CABINFOA* pCab, LPVOID pReserved ) ...@@ -110,16 +110,22 @@ HRESULT WINAPI ExecuteCabA( HWND hwnd, CABINFOA* pCab, LPVOID pReserved )
* PARAMS * PARAMS
* hWnd [I] Handle to parent window, NULL for desktop. * hWnd [I] Handle to parent window, NULL for desktop.
* hInst [I] Instance of the process. * hInst [I] Instance of the process.
* cmdline [I] Contains parameters in the order INF,section,flags. * cmdline [I] Contains parameters in the order INF,section,flags,reboot.
* show [I] Reboot behaviour: * show [I] How the window should be shown.
* 'A' reboot always
* 'I' default, reboot if needed
* 'N' no reboot
* *
* RETURNS * RETURNS
* Success: S_OK. * Success: S_OK.
* Failure: S_FALSE * Failure: S_FALSE
* *
* NOTES
* INF - Filename of the INF to launch.
* section - INF section to install.
* flags - see advpub.h.
* reboot - smart reboot behavior
* 'A' Always reboot.
* 'I' Reboot if needed (default).
* 'N' No reboot.
*
* BUGS * BUGS
* Unimplemented. * Unimplemented.
*/ */
...@@ -137,16 +143,22 @@ INT WINAPI LaunchINFSectionA( HWND hWnd, HINSTANCE hInst, LPSTR cmdline, INT sho ...@@ -137,16 +143,22 @@ INT WINAPI LaunchINFSectionA( HWND hWnd, HINSTANCE hInst, LPSTR cmdline, INT sho
* PARAMS * PARAMS
* hWnd [I] Handle to parent window, NULL for desktop. * hWnd [I] Handle to parent window, NULL for desktop.
* hInst [I] Instance of the process. * hInst [I] Instance of the process.
* cmdline [I] Contains parameters in the order INF,section,CAB,flags. * cmdline [I] Contains parameters in the order INF,section,CAB,flags,reboot.
* show [I] Reboot behaviour: * show [I] How the window should be shown.
* 'A' reboot always
* 'I' default, reboot if needed
* 'N' no reboot
* *
* RETURNS * RETURNS
* Success: S_OK. * Success: S_OK.
* Failure: E_FAIL. * Failure: E_FAIL.
* *
* NOTES
* INF - Filename of the INF to launch.
* section - INF section to install.
* flags - see advpub.h.
* reboot - smart reboot behavior
* 'A' Always reboot.
* 'I' Reboot if needed (default).
* 'N' No reboot.
*
* BUGS * BUGS
* Unimplemented. * Unimplemented.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment