mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-06-28 07:56:52 +00:00
29 lines
1.3 KiB
C
29 lines
1.3 KiB
C
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||
|
|
||
|
#ifndef SEAFILE_RECVBLOCK_V2_PROC_H
|
||
|
#define SEAFILE_RECVBLOCK_V2_PROC_H
|
||
|
|
||
|
#include <glib-object.h>
|
||
|
|
||
|
#define SEAFILE_TYPE_RECVBLOCK_V2_PROC (seafile_recvblock_v2_proc_get_type ())
|
||
|
#define SEAFILE_RECVBLOCK_V2_PROC(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SEAFILE_TYPE_RECVBLOCK_V2_PROC, SeafileRecvblockV2Proc))
|
||
|
#define SEAFILE_IS_RECVBLOCK_V2_PROC(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SEAFILE_TYPE_RECVBLOCK_V2_PROC))
|
||
|
#define SEAFILE_RECVBLOCK_V2_PROC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SEAFILE_TYPE_RECVBLOCK_V2_PROC, SeafileRecvblockV2ProcClass))
|
||
|
#define IS_SEAFILE_RECVBLOCK_V2_PROC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SEAFILE_TYPE_RECVBLOCK_V2_PROC))
|
||
|
#define SEAFILE_RECVBLOCK_V2_PROC_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SEAFILE_TYPE_RECVBLOCK_V2_PROC, SeafileRecvblockV2ProcClass))
|
||
|
|
||
|
typedef struct _SeafileRecvblockV2Proc SeafileRecvblockV2Proc;
|
||
|
typedef struct _SeafileRecvblockV2ProcClass SeafileRecvblockV2ProcClass;
|
||
|
|
||
|
struct _SeafileRecvblockV2Proc {
|
||
|
CcnetProcessor parent_instance;
|
||
|
};
|
||
|
|
||
|
struct _SeafileRecvblockV2ProcClass {
|
||
|
CcnetProcessorClass parent_class;
|
||
|
};
|
||
|
|
||
|
GType seafile_recvblock_v2_proc_get_type ();
|
||
|
|
||
|
#endif
|