27 lines
779 B
C
27 lines
779 B
C
|
#ifndef DTR_WATCH_H
|
||
|
#define DTR_WATCH_H
|
||
|
|
||
|
/*
|
||
|
* This file Copyright (C) 2009 Charles Kerr <charles@transmissionbt.com>
|
||
|
*
|
||
|
* This file is licensed by the GPL version 2. Works owned by the
|
||
|
* Transmission project are granted a special exemption to clause 2(b)
|
||
|
* so that the bulk of its code can remain under the MIT license.
|
||
|
* This exemption does not extend to derived works not owned by
|
||
|
* the Transmission project.
|
||
|
*
|
||
|
* $Id:$
|
||
|
*/
|
||
|
|
||
|
typedef struct dtr_watchdir dtr_watchdir;
|
||
|
|
||
|
typedef void( dtr_watchdir_callback )( tr_session * session, const char * dir, const char * file );
|
||
|
|
||
|
dtr_watchdir* dtr_watchdir_new( tr_session * session, const char * dir, dtr_watchdir_callback cb );
|
||
|
|
||
|
void dtr_watchdir_update( dtr_watchdir * w );
|
||
|
|
||
|
void dtr_watchdir_free( dtr_watchdir * w );
|
||
|
|
||
|
#endif
|