You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2011/04/27 22:51:34 UTC

svn commit: r1097234 - in /subversion/trunk/subversion/include: svn_types.h svn_wc.h

Author: hwright
Date: Wed Apr 27 20:51:33 2011
New Revision: 1097234

URL: http://svn.apache.org/viewvc?rev=1097234&view=rev
Log:
Move a typedef to the real proper home.  Since svn_changelist_receiver_t is
only driven by libsvn_wc, it makes sense to live in svn_wc.h.

* subversion/include/svn_types.h
  (svn_changelist_receiver_t): Moved from here...

* subversion/include/svn_wc.h
  (svn_changelist_receiver_t): ...to here.

Modified:
    subversion/trunk/subversion/include/svn_types.h
    subversion/trunk/subversion/include/svn_wc.h

Modified: subversion/trunk/subversion/include/svn_types.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_types.h?rev=1097234&r1=1097233&r2=1097234&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_types.h (original)
+++ subversion/trunk/subversion/include/svn_types.h Wed Apr 27 20:51:33 2011
@@ -1200,20 +1200,6 @@ typedef unsigned long svn_linenum_t;
 /** @} */
 
 
-/**
- * The callback type used by svn_client_get_changelists().
- *
- * On each invocation, @a path is a newly discovered member of the
- * changelist, and @a baton is a private function closure.
- *
- * @since New in 1.5.
- */
-typedef svn_error_t *(*svn_changelist_receiver_t) (void *baton,
-                                                   const char *path,
-                                                   const char *changelist,
-                                                   apr_pool_t *pool);
-
-
 /** Forward declaration, for the purpose of the #svn_info2_t struct. */
 struct svn_wc_info_t;
 

Modified: subversion/trunk/subversion/include/svn_wc.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_wc.h?rev=1097234&r1=1097233&r2=1097234&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_wc.h (original)
+++ subversion/trunk/subversion/include/svn_wc.h Wed Apr 27 20:51:33 2011
@@ -7568,6 +7568,22 @@ svn_wc_set_changelist(const char *path,
                       void *notify_baton,
                       apr_pool_t *pool);
 
+
+
+/**
+ * The callback type used by svn_client_get_changelists().
+ *
+ * On each invocation, @a path is a newly discovered member of the
+ * changelist, and @a baton is a private function closure.
+ *
+ * @since New in 1.5.
+ */
+typedef svn_error_t *(*svn_changelist_receiver_t) (void *baton,
+                                                   const char *path,
+                                                   const char *changelist,
+                                                   apr_pool_t *pool);
+
+
 /* @since New in 1.7.
  */
 svn_error_t *