mirror of
https://github.com/rozniak/xfce-winxp-tc.git
synced 2026-05-01 03:31:33 +00:00
22 lines
374 B
C
22 lines
374 B
C
#ifndef __VOLUME_H__
|
|
#define __VOLUME_H__
|
|
|
|
#include <glib.h>
|
|
#include <gtk/gtk.h>
|
|
#include <wintc/shellext.h>
|
|
|
|
//
|
|
// GTK OOP BOILERPLATE
|
|
//
|
|
#define WINTC_TYPE_NOTIFICATION_VOLUME (wintc_notification_volume_get_type())
|
|
|
|
G_DECLARE_FINAL_TYPE(
|
|
WinTCNotificationVolume,
|
|
wintc_notification_volume,
|
|
WINTC,
|
|
NOTIFICATION_VOLUME,
|
|
WinTCShextUIController
|
|
)
|
|
|
|
#endif
|