blob: 5550884b9f668e58d9569bb385c662a79a0600bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* Copyright © 2008 Ryan Lortie
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation; either version 2 of the licence or (at
* your option) any later version.
*
* See the included COPYING file for more information.
*/
#ifndef _gvfsbackendtrash_h_
#define _gvfsbackendtrash_h_
#include <gvfsbackend.h>
#define G_VFS_TYPE_BACKEND_TRASH (g_vfs_backend_trash_get_type ())
#define G_VFS_BACKEND_TRASH(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
G_VFS_TYPE_BACKEND_TRASH, \
GVfsBackendTrash))
typedef struct OPAQUE_TYPE__GVfsBackendTrash GVfsBackendTrash;
GType g_vfs_backend_trash_get_type (void);
#endif /* _gvfsbackendtrash_h_ */
|