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

Alexandre Julliard julliard at wine.codeweavers.com
Thu Mar 30 05:44:24 CST 2006


Module: wine
Branch: refs/heads/master
Commit: 93fc6d450aa9900f57324c898a91c371704ed901
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=93fc6d450aa9900f57324c898a91c371704ed901

Author: James Hawkins <truiken at gmail.com>
Date:   Thu Mar 30 03:52:17 2006 -0600

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

---

 dlls/advpack/install.c |   32 ++++++++++++++++++++++----------
 1 files changed, 22 insertions(+), 10 deletions(-)

diff --git a/dlls/advpack/install.c b/dlls/advpack/install.c
index c6bc6c5..417084e 100644
--- a/dlls/advpack/install.c
+++ b/dlls/advpack/install.c
@@ -110,16 +110,22 @@ HRESULT WINAPI ExecuteCabA( HWND hwnd, C
  * PARAMS
  *   hWnd    [I] Handle to parent window, NULL for desktop.
  *   hInst   [I] Instance of the process.
- *   cmdline [I] Contains parameters in the order INF,section,flags.
- *   show    [I] Reboot behaviour:
- *              'A' reboot always
- *              'I' default, reboot if needed
- *              'N' no reboot
+ *   cmdline [I] Contains parameters in the order INF,section,flags,reboot.
+ *   show    [I] How the window should be shown.
  *
  * RETURNS
  *  Success: S_OK.
  *  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
  *  Unimplemented.
  */
@@ -137,16 +143,22 @@ INT WINAPI LaunchINFSectionA( HWND hWnd,
  * PARAMS
  *   hWnd    [I] Handle to parent window, NULL for desktop.
  *   hInst   [I] Instance of the process.
- *   cmdline [I] Contains parameters in the order INF,section,CAB,flags.
- *   show    [I] Reboot behaviour:
- *              'A' reboot always
- *              'I' default, reboot if needed
- *              'N' no reboot
+ *   cmdline [I] Contains parameters in the order INF,section,CAB,flags,reboot.
+ *   show    [I] How the window should be shown.
  *
  * RETURNS
  *  Success: S_OK.
  *  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
  *  Unimplemented.
  */




More information about the wine-cvs mailing list