• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright (C) 2020 Руслан Ижбулатов <lrn1986@gmail.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
17  *
18  */
19 #ifndef __G_WIN32_PACKAGE_PARSER_H__
20 #define __G_WIN32_PACKAGE_PARSER_H__
21 
22 #include <gio/gio.h>
23 
24 #ifdef G_PLATFORM_WIN32
25 
26 typedef struct _GWin32PackageExtGroup GWin32PackageExtGroup;
27 
28 struct _GWin32PackageExtGroup
29 {
30   GPtrArray *verbs;
31   GPtrArray *extensions;
32 };
33 
34 typedef gboolean (*GWin32PackageParserCallback)(gpointer         user_data,
35                                                 const gunichar2 *full_package_name,
36                                                 const gunichar2 *package_name,
37                                                 const gunichar2 *app_user_model_id,
38                                                 gboolean         show_in_applist,
39                                                 GPtrArray       *supported_extgroups,
40                                                 GPtrArray       *supported_protocols);
41 
42 gboolean g_win32_package_parser_enum_packages (GWin32PackageParserCallback   callback,
43                                                gpointer                      user_data,
44                                                GError                      **error);
45 
46 #endif /* G_PLATFORM_WIN32 */
47 
48 #endif /* __G_WIN32_PACKAGE_PARSER_H__ */