advpack: fix LaunchInfSection[Ex] documentation

Markus Amsler markus.amsler at oribi.org
Thu Dec 22 14:40:35 CST 2005


Changelog:
* fix LaunchInfSection[Ex] documentation
-------------- next part --------------
Index: dlls/advpack/advpack.c
===================================================================
RCS file: /home/wine/wine/dlls/advpack/advpack.c,v
retrieving revision 1.18
diff -u -r1.18 advpack.c
--- dlls/advpack/advpack.c	2 Dec 2005 10:29:40 -0000	1.18
+++ dlls/advpack/advpack.c	22 Dec 2005 20:45:56 -0000
@@ -127,7 +127,23 @@
 /***********************************************************************
  *		LaunchINFSection  (ADVPACK.@)
  *
- * See LaunchINFSectionEx.
+ * Installs an INF section without BACKUP/ROLLBACK capabilities.
+ *
+ * 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
+ *
+ * RETURNS
+ *  Success: S_OK.
+ *  Failure: S_FALSE
+ *
+ * BUGS
+ *  Unimplemented.
  */
 INT WINAPI LaunchINFSection( HWND hWnd, HINSTANCE hInst, LPSTR cmdline, INT show )
 {
@@ -138,13 +154,16 @@
 /***********************************************************************
  *		LaunchINFSectionEx  (ADVPACK.@)
  *
- * Installs an INF section.
+ * Installs an INF section with BACKUP/ROLLBACK capabilities.
  *
  * PARAMS
- *   hWnd    [I] Handle to the window used for the display.
+ *   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] How the window should be shown.
+ *   show    [I] Reboot behaviour:
+ *              'A' reboot always
+ *              'I' default, reboot if needed
+ *              'N' no reboot
  *
  * RETURNS
  *  Success: S_OK.


More information about the wine-patches mailing list