Revert "transmission: update from 2.13 to 2.22"
[tomato.git] / release / src / router / transmission / libtransmission / platform.h
blobb4a4c995a57fc1b2a94a2c704f66f356b49f911e
1 /*
2 * This file Copyright (C) 2009-2010 Mnemosyne LLC
4 * This file is licensed by the GPL version 2. Works owned by the
5 * Transmission project are granted a special exemption to clause 2(b)
6 * so that the bulk of its code can remain under the MIT license.
7 * This exemption does not extend to derived works not owned by
8 * the Transmission project.
10 * $Id: platform.h 11126 2010-08-05 19:54:44Z charles $
13 #ifndef __TRANSMISSION__
14 #error only libtransmission should #include this header.
15 #endif
17 #ifndef TR_PLATFORM_H
18 #define TR_PLATFORM_H
20 #define TR_PATH_DELIMITER '/'
21 #define TR_PATH_DELIMITER_STR "/"
23 #ifdef WIN32
24 #include <windef.h> /* MAX_PATH */
25 #define TR_PATH_MAX (MAX_PATH + 1)
26 #else
27 #include <limits.h> /* PATH_MAX */
28 #ifdef PATH_MAX
29 #define TR_PATH_MAX PATH_MAX
30 #else
31 #define TR_PATH_MAX 4096
32 #endif
33 #endif
35 /**
36 * @addtogroup tr_session Session
37 * @{
40 /**
41 * @brief invoked by tr_sessionInit() to set up the locations of the resume, torrent, and clutch directories.
42 * @see tr_getResumeDir()
43 * @see tr_getTorrentDir()
44 * @see tr_getWebClientDir()
46 void tr_setConfigDir( tr_session * session, const char * configDir );
48 /** @brief return the directory where .resume files are stored */
49 const char * tr_getResumeDir( const tr_session * );
51 /** @brief return the directory where .torrent files are stored */
52 const char * tr_getTorrentDir( const tr_session * );
54 /** @brief return the directory where the Web Client's web ui files are kept */
55 const char * tr_getWebClientDir( const tr_session * );
57 /** @} */
60 /**
61 * @addtogroup utils Utilities
62 * @{
65 typedef struct tr_thread tr_thread;
67 /** @brief Instantiate a new process thread */
68 tr_thread* tr_threadNew( void ( *func )(void *), void * arg );
70 /** @brief Return nonzero if this function is being called from `thread'
71 @param thread the thread being tested */
72 tr_bool tr_amInThread( const tr_thread * );
74 /***
75 ****
76 ***/
78 typedef struct tr_lock tr_lock;
80 /** @brief Create a new thread mutex object */
81 tr_lock * tr_lockNew( void );
83 /** @brief Destroy a thread mutex object */
84 void tr_lockFree( tr_lock * );
86 /** @brief Attempt to lock a thread mutex object */
87 void tr_lockLock( tr_lock * );
89 /** @brief Unlock a thread mutex object */
90 void tr_lockUnlock( tr_lock * );
92 /** @brief return nonzero if the specified lock is locked */
93 int tr_lockHave( const tr_lock * );
95 #ifdef WIN32
96 void * mmap( void *ptr, long size, long prot, long type, long handle, long arg );
98 long munmap( void *ptr, long size );
99 #endif
101 /* @} */
103 #endif