-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathuninstall.h
More file actions
16 lines (11 loc) · 569 Bytes
/
uninstall.h
File metadata and controls
16 lines (11 loc) · 569 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Generic uninstaller for products.
Parses the product INI file in ~/.loki/installed/ and uninstalls the software.
*/
/* $Id: uninstall.h,v 1.10 2003-06-06 20:48:06 megastep Exp $ */
extern product_t *prod;
/* See if we have permissions to uninstall a product */
extern int check_permissions(product_info_t *info, int verbose);
/* Uninstall a single component */
extern int uninstall_component(product_component_t *comp, product_info_t *info);
/* Uninstall an entire product */
extern int perform_uninstall(product_t *prod, product_info_t *info, int console);