mirror of
https://github.com/rozniak/xfce-winxp-tc.git
synced 2026-05-01 03:31:33 +00:00
31 lines
452 B
C
31 lines
452 B
C
#ifndef __SHELL_CPL_H__
|
|
#define __SHELL_CPL_H__
|
|
|
|
#include <glib.h>
|
|
|
|
//
|
|
// PUBLIC STRUCTURES
|
|
//
|
|
typedef struct _WinTCShCplApplet
|
|
{
|
|
gchar* display_name;
|
|
gchar* comment;
|
|
gchar* exec;
|
|
gchar* icon_name;
|
|
} WinTCShCplApplet;
|
|
|
|
//
|
|
// PUBLIC FUNCTIONS
|
|
//
|
|
GList* wintc_sh_cpl_applet_get_all(void);
|
|
|
|
gboolean wintc_sh_cpl_applet_is_executable(
|
|
WinTCShCplApplet* applet
|
|
);
|
|
|
|
void wintc_sh_cpl_applet_free(
|
|
WinTCShCplApplet* applet
|
|
);
|
|
|
|
#endif
|