Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 93699 invoked from network); 17 Feb 2007 03:15:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Feb 2007 03:15:03 -0000 Received: (qmail 12936 invoked by uid 500); 17 Feb 2007 03:15:10 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 12850 invoked by uid 500); 17 Feb 2007 03:15:09 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 12828 invoked by uid 99); 17 Feb 2007 03:15:09 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Feb 2007 19:15:09 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Feb 2007 19:14:55 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 7CD4D1A981D; Fri, 16 Feb 2007 19:14:35 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r508704 [2/8] - in /apr/site/trunk/docs/docs: apr-iconv/trunk/ apr-util/trunk/ apr/trunk/ Date: Sat, 17 Feb 2007 03:14:24 -0000 To: commits@apr.apache.org From: bojan@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070217031435.7CD4D1A981D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__dbd_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__dbd_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__dbd_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__dbd_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_dbd.h

    Go to the documentation of this file.
    00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_dbd.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -48,120 +48,172 @@
     00028 extern "C" {
     00029 #endif
     00030 
    -00041 /* These are opaque structs.  Instantiation is up to each backend */
    -00042 typedef struct apr_dbd_driver_t apr_dbd_driver_t;
    -00043 typedef struct apr_dbd_t apr_dbd_t;
    -00044 typedef struct apr_dbd_transaction_t apr_dbd_transaction_t;
    -00045 typedef struct apr_dbd_results_t apr_dbd_results_t;
    -00046 typedef struct apr_dbd_row_t apr_dbd_row_t;
    -00047 typedef struct apr_dbd_prepared_t apr_dbd_prepared_t;
    -00048 
    -00053 APU_DECLARE(apr_status_t) apr_dbd_init(apr_pool_t *pool);
    -00054 
    -00065 APU_DECLARE(apr_status_t) apr_dbd_get_driver(apr_pool_t *pool, const char *name,
    -00066                                              const apr_dbd_driver_t **driver);
    -00067 
    -00096 APU_DECLARE(apr_status_t) apr_dbd_open(const apr_dbd_driver_t *driver,
    -00097                                        apr_pool_t *pool, const char *params,
    -00098                                        apr_dbd_t **handle);
    -00099 
    -00106 APU_DECLARE(apr_status_t) apr_dbd_close(const apr_dbd_driver_t *driver,
    -00107                                         apr_dbd_t *handle);
    -00108 
    -00109 /* apr-function-shaped versions of things */
    -00110 
    -00116 APU_DECLARE(const char*) apr_dbd_name(const apr_dbd_driver_t *driver);
    -00117 
    -00124 APU_DECLARE(void*) apr_dbd_native_handle(const apr_dbd_driver_t *driver,
    -00125                                          apr_dbd_t *handle);
    -00126 
    -00134 APU_DECLARE(int) apr_dbd_check_conn(const apr_dbd_driver_t *driver, apr_pool_t *pool,
    -00135                                     apr_dbd_t *handle);
    -00136 
    -00145 APU_DECLARE(int) apr_dbd_set_dbname(const apr_dbd_driver_t *driver, apr_pool_t *pool,
    -00146                                     apr_dbd_t *handle, const char *name);
    -00147 
    -00162 APU_DECLARE(int) apr_dbd_transaction_start(const apr_dbd_driver_t *driver,
    -00163                                            apr_pool_t *pool,
    -00164                                            apr_dbd_t *handle,
    -00165                                            apr_dbd_transaction_t **trans);
    +00055 typedef enum {
    +00056     APR_DBD_TYPE_NONE,
    +00057     APR_DBD_TYPE_TINY,       
    +00058     APR_DBD_TYPE_UTINY,      
    +00059     APR_DBD_TYPE_SHORT,      
    +00060     APR_DBD_TYPE_USHORT,     
    +00061     APR_DBD_TYPE_INT,        
    +00062     APR_DBD_TYPE_UINT,       
    +00063     APR_DBD_TYPE_LONG,       
    +00064     APR_DBD_TYPE_ULONG,      
    +00065     APR_DBD_TYPE_LONGLONG,   
    +00066     APR_DBD_TYPE_ULONGLONG,  
    +00067     APR_DBD_TYPE_FLOAT,      
    +00068     APR_DBD_TYPE_DOUBLE,     
    +00069     APR_DBD_TYPE_STRING,     
    +00070     APR_DBD_TYPE_TEXT,       
    +00071     APR_DBD_TYPE_TIME,       
    +00072     APR_DBD_TYPE_DATE,       
    +00073     APR_DBD_TYPE_DATETIME,   
    +00074     APR_DBD_TYPE_TIMESTAMP,  
    +00075     APR_DBD_TYPE_ZTIMESTAMP, 
    +00076     APR_DBD_TYPE_BLOB,       
    +00077     APR_DBD_TYPE_CLOB,       
    +00078     APR_DBD_TYPE_NULL        
    +00079 } apr_dbd_type_e;
    +00080 
    +00081 /* These are opaque structs.  Instantiation is up to each backend */
    +00082 typedef struct apr_dbd_driver_t apr_dbd_driver_t;
    +00083 typedef struct apr_dbd_t apr_dbd_t;
    +00084 typedef struct apr_dbd_transaction_t apr_dbd_transaction_t;
    +00085 typedef struct apr_dbd_results_t apr_dbd_results_t;
    +00086 typedef struct apr_dbd_row_t apr_dbd_row_t;
    +00087 typedef struct apr_dbd_prepared_t apr_dbd_prepared_t;
    +00088 
    +00093 APU_DECLARE(apr_status_t) apr_dbd_init(apr_pool_t *pool);
    +00094 
    +00105 APU_DECLARE(apr_status_t) apr_dbd_get_driver(apr_pool_t *pool, const char *name,
    +00106                                              const apr_dbd_driver_t **driver);
    +00107 
    +00136 APU_DECLARE(apr_status_t) apr_dbd_open(const apr_dbd_driver_t *driver,
    +00137                                        apr_pool_t *pool, const char *params,
    +00138                                        apr_dbd_t **handle);
    +00139 
    +00146 APU_DECLARE(apr_status_t) apr_dbd_close(const apr_dbd_driver_t *driver,
    +00147                                         apr_dbd_t *handle);
    +00148 
    +00149 /* apr-function-shaped versions of things */
    +00150 
    +00156 APU_DECLARE(const char*) apr_dbd_name(const apr_dbd_driver_t *driver);
    +00157 
    +00164 APU_DECLARE(void*) apr_dbd_native_handle(const apr_dbd_driver_t *driver,
    +00165                                          apr_dbd_t *handle);
     00166 
    -00176 APU_DECLARE(int) apr_dbd_transaction_end(const apr_dbd_driver_t *driver,
    -00177                                          apr_pool_t *pool,
    -00178                                          apr_dbd_transaction_t *trans);
    -00179 
    -00180 #define APR_DBD_TRANSACTION_COMMIT        0x00  
    -00181 #define APR_DBD_TRANSACTION_ROLLBACK      0x01  
    -00182 #define APR_DBD_TRANSACTION_IGNORE_ERRORS 0x02  
    -00190 APU_DECLARE(int) apr_dbd_transaction_mode_get(const apr_dbd_driver_t *driver,
    -00191                                               apr_dbd_transaction_t *trans);
    -00192 
    -00200 APU_DECLARE(int) apr_dbd_transaction_mode_set(const apr_dbd_driver_t *driver,
    -00201                                               apr_dbd_transaction_t *trans,
    -00202                                               int mode);
    -00203 
    -00212 APU_DECLARE(int) apr_dbd_query(const apr_dbd_driver_t *driver, apr_dbd_t *handle,
    -00213                                int *nrows, const char *statement);
    -00214 
    -00227 APU_DECLARE(int) apr_dbd_select(const apr_dbd_driver_t *driver, apr_pool_t *pool,
    -00228                                 apr_dbd_t *handle, apr_dbd_results_t **res,
    -00229                                 const char *statement, int random);
    -00230 
    -00237 APU_DECLARE(int) apr_dbd_num_cols(const apr_dbd_driver_t *driver,
    -00238                                   apr_dbd_results_t *res);
    -00239 
    -00247 APU_DECLARE(int) apr_dbd_num_tuples(const apr_dbd_driver_t *driver,
    -00248                                     apr_dbd_results_t *res);
    -00249 
    -00260 APU_DECLARE(int) apr_dbd_get_row(const apr_dbd_driver_t *driver, apr_pool_t *pool,
    -00261                                  apr_dbd_results_t *res, apr_dbd_row_t **row,
    -00262                                  int rownum);
    -00263 
    -00271 APU_DECLARE(const char*) apr_dbd_get_entry(const apr_dbd_driver_t *driver,
    -00272                                            apr_dbd_row_t *row, int col);
    -00273 
    -00281 APU_DECLARE(const char*) apr_dbd_get_name(const apr_dbd_driver_t *driver,
    -00282                                           apr_dbd_results_t *res, int col);
    -00283 
    -00284 
    -00293 APU_DECLARE(const char*) apr_dbd_error(const apr_dbd_driver_t *driver,
    -00294                                        apr_dbd_t *handle, int errnum);
    -00295 
    -00304 APU_DECLARE(const char*) apr_dbd_escape(const apr_dbd_driver_t *driver,
    -00305                                         apr_pool_t *pool, const char *string,
    -00306                                         apr_dbd_t *handle);
    -00307 
    -00326 APU_DECLARE(int) apr_dbd_prepare(const apr_dbd_driver_t *driver, apr_pool_t *pool,
    -00327                                  apr_dbd_t *handle, const char *query,
    -00328                                  const char *label,
    -00329                                  apr_dbd_prepared_t **statement);
    -00330 
    -00331 
    -00343 APU_DECLARE(int) apr_dbd_pquery(const apr_dbd_driver_t *driver, apr_pool_t *pool,
    -00344                                 apr_dbd_t *handle, int *nrows,
    -00345                                 apr_dbd_prepared_t *statement, int nargs,
    -00346                                 const char **args);
    +00174 APU_DECLARE(int) apr_dbd_check_conn(const apr_dbd_driver_t *driver, apr_pool_t *pool,
    +00175                                     apr_dbd_t *handle);
    +00176 
    +00185 APU_DECLARE(int) apr_dbd_set_dbname(const apr_dbd_driver_t *driver, apr_pool_t *pool,
    +00186                                     apr_dbd_t *handle, const char *name);
    +00187 
    +00202 APU_DECLARE(int) apr_dbd_transaction_start(const apr_dbd_driver_t *driver,
    +00203                                            apr_pool_t *pool,
    +00204                                            apr_dbd_t *handle,
    +00205                                            apr_dbd_transaction_t **trans);
    +00206 
    +00216 APU_DECLARE(int) apr_dbd_transaction_end(const apr_dbd_driver_t *driver,
    +00217                                          apr_pool_t *pool,
    +00218                                          apr_dbd_transaction_t *trans);
    +00219 
    +00220 #define APR_DBD_TRANSACTION_COMMIT        0x00  
    +00221 #define APR_DBD_TRANSACTION_ROLLBACK      0x01  
    +00222 #define APR_DBD_TRANSACTION_IGNORE_ERRORS 0x02  
    +00230 APU_DECLARE(int) apr_dbd_transaction_mode_get(const apr_dbd_driver_t *driver,
    +00231                                               apr_dbd_transaction_t *trans);
    +00232 
    +00240 APU_DECLARE(int) apr_dbd_transaction_mode_set(const apr_dbd_driver_t *driver,
    +00241                                               apr_dbd_transaction_t *trans,
    +00242                                               int mode);
    +00243 
    +00252 APU_DECLARE(int) apr_dbd_query(const apr_dbd_driver_t *driver, apr_dbd_t *handle,
    +00253                                int *nrows, const char *statement);
    +00254 
    +00267 APU_DECLARE(int) apr_dbd_select(const apr_dbd_driver_t *driver, apr_pool_t *pool,
    +00268                                 apr_dbd_t *handle, apr_dbd_results_t **res,
    +00269                                 const char *statement, int random);
    +00270 
    +00277 APU_DECLARE(int) apr_dbd_num_cols(const apr_dbd_driver_t *driver,
    +00278                                   apr_dbd_results_t *res);
    +00279 
    +00287 APU_DECLARE(int) apr_dbd_num_tuples(const apr_dbd_driver_t *driver,
    +00288                                     apr_dbd_results_t *res);
    +00289 
    +00300 APU_DECLARE(int) apr_dbd_get_row(const apr_dbd_driver_t *driver, apr_pool_t *pool,
    +00301                                  apr_dbd_results_t *res, apr_dbd_row_t **row,
    +00302                                  int rownum);
    +00303 
    +00311 APU_DECLARE(const char*) apr_dbd_get_entry(const apr_dbd_driver_t *driver,
    +00312                                            apr_dbd_row_t *row, int col);
    +00313 
    +00321 APU_DECLARE(const char*) apr_dbd_get_name(const apr_dbd_driver_t *driver,
    +00322                                           apr_dbd_results_t *res, int col);
    +00323 
    +00324 
    +00333 APU_DECLARE(const char*) apr_dbd_error(const apr_dbd_driver_t *driver,
    +00334                                        apr_dbd_t *handle, int errnum);
    +00335 
    +00344 APU_DECLARE(const char*) apr_dbd_escape(const apr_dbd_driver_t *driver,
    +00345                                         apr_pool_t *pool, const char *string,
    +00346                                         apr_dbd_t *handle);
     00347 
    -00360 APU_DECLARE(int) apr_dbd_pselect(const apr_dbd_driver_t *driver, apr_pool_t *pool,
    -00361                                  apr_dbd_t *handle, apr_dbd_results_t **res,
    -00362                                  apr_dbd_prepared_t *statement, int random,
    -00363                                  int nargs, const char **args);
    -00364 
    -00375 APU_DECLARE(int) apr_dbd_pvquery(const apr_dbd_driver_t *driver, apr_pool_t *pool,
    -00376                                  apr_dbd_t *handle, int *nrows,
    -00377                                  apr_dbd_prepared_t *statement, ...);
    -00378 
    -00390 APU_DECLARE(int) apr_dbd_pvselect(const apr_dbd_driver_t *driver, apr_pool_t *pool,
    -00391                                   apr_dbd_t *handle, apr_dbd_results_t **res,
    -00392                                   apr_dbd_prepared_t *statement, int random,
    -00393                                   ...);
    -00394 
    -00397 #ifdef __cplusplus
    -00398 }
    -00399 #endif
    -00400 
    -00401 #endif
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +00376 APU_DECLARE(int) apr_dbd_prepare(const apr_dbd_driver_t *driver, apr_pool_t *pool, +00377 apr_dbd_t *handle, const char *query, +00378 const char *label, +00379 apr_dbd_prepared_t **statement); +00380 +00381 +00393 APU_DECLARE(int) apr_dbd_pquery(const apr_dbd_driver_t *driver, apr_pool_t *pool, +00394 apr_dbd_t *handle, int *nrows, +00395 apr_dbd_prepared_t *statement, int nargs, +00396 const char **args); +00397 +00410 APU_DECLARE(int) apr_dbd_pselect(const apr_dbd_driver_t *driver, apr_pool_t *pool, +00411 apr_dbd_t *handle, apr_dbd_results_t **res, +00412 apr_dbd_prepared_t *statement, int random, +00413 int nargs, const char **args); +00414 +00425 APU_DECLARE(int) apr_dbd_pvquery(const apr_dbd_driver_t *driver, apr_pool_t *pool, +00426 apr_dbd_t *handle, int *nrows, +00427 apr_dbd_prepared_t *statement, ...); +00428 +00440 APU_DECLARE(int) apr_dbd_pvselect(const apr_dbd_driver_t *driver, apr_pool_t *pool, +00441 apr_dbd_t *handle, apr_dbd_results_t **res, +00442 apr_dbd_prepared_t *statement, int random, +00443 ...); +00444 +00455 APU_DECLARE(int) apr_dbd_pbquery(const apr_dbd_driver_t *driver, +00456 apr_pool_t *pool, apr_dbd_t *handle, +00457 int *nrows, apr_dbd_prepared_t *statement, +00458 const void **args); +00459 +00471 APU_DECLARE(int) apr_dbd_pbselect(const apr_dbd_driver_t *driver, +00472 apr_pool_t *pool, +00473 apr_dbd_t *handle, apr_dbd_results_t **res, +00474 apr_dbd_prepared_t *statement, int random, +00475 const void **args); +00476 +00487 APU_DECLARE(int) apr_dbd_pvbquery(const apr_dbd_driver_t *driver, +00488 apr_pool_t *pool, +00489 apr_dbd_t *handle, int *nrows, +00490 apr_dbd_prepared_t *statement, ...); +00491 +00503 APU_DECLARE(int) apr_dbd_pvbselect(const apr_dbd_driver_t *driver, +00504 apr_pool_t *pool, +00505 apr_dbd_t *handle, apr_dbd_results_t **res, +00506 apr_dbd_prepared_t *statement, int random, +00507 ...); +00508 +00518 APU_DECLARE(apr_status_t) apr_dbd_datum_get(const apr_dbd_driver_t *driver, +00519 apr_dbd_row_t *row, int col, +00520 apr_dbd_type_e type, void *data); +00521 +00524 #ifdef __cplusplus +00525 } +00526 #endif +00527 +00528 #endif +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__dbd_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__dbd_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__dbd_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__dbd_8h.html Fri Feb 16 19:14:13 2007 @@ -52,6 +52,39 @@ typedef apr_dbd_prepared_t apr_dbd_prepared_t +

    Enumerations

    +enum  apr_dbd_type_e {
    +  APR_DBD_TYPE_NONE, +APR_DBD_TYPE_TINY, +APR_DBD_TYPE_UTINY, +APR_DBD_TYPE_SHORT, +
    +  APR_DBD_TYPE_USHORT, +APR_DBD_TYPE_INT, +APR_DBD_TYPE_UINT, +APR_DBD_TYPE_LONG, +
    +  APR_DBD_TYPE_ULONG, +APR_DBD_TYPE_LONGLONG, +APR_DBD_TYPE_ULONGLONG, +APR_DBD_TYPE_FLOAT, +
    +  APR_DBD_TYPE_DOUBLE, +APR_DBD_TYPE_STRING, +APR_DBD_TYPE_TEXT, +APR_DBD_TYPE_TIME, +
    +  APR_DBD_TYPE_DATE, +APR_DBD_TYPE_DATETIME, +APR_DBD_TYPE_TIMESTAMP, +APR_DBD_TYPE_ZTIMESTAMP, +
    +  APR_DBD_TYPE_BLOB, +APR_DBD_TYPE_CLOB, +APR_DBD_TYPE_NULL +
    + } +

    Functions

    apr_status_t apr_dbd_init (apr_pool_t *pool) @@ -105,11 +138,21 @@ int apr_dbd_pvselect (const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, apr_dbd_results_t **res, apr_dbd_prepared_t *statement, int random,...) +int apr_dbd_pbquery (const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, int *nrows, apr_dbd_prepared_t *statement, const void **args) + +int apr_dbd_pbselect (const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, apr_dbd_results_t **res, apr_dbd_prepared_t *statement, int random, const void **args) + +int apr_dbd_pvbquery (const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, int *nrows, apr_dbd_prepared_t *statement,...) + +int apr_dbd_pvbselect (const apr_dbd_driver_t *driver, apr_pool_t *pool, apr_dbd_t *handle, apr_dbd_results_t **res, apr_dbd_prepared_t *statement, int random,...) + +apr_status_t apr_dbd_datum_get (const apr_dbd_driver_t *driver, apr_dbd_row_t *row, int col, apr_dbd_type_e type, void *data) +

    Detailed Description

    APR-UTIL DBD library.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__dbd__internal_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__dbd__internal_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__dbd__internal_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__dbd__internal_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_dbd_internal.h

    00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_dbd_internal.h

    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -99,42 +99,61 @@
     00188     const char *(*escape)(apr_pool_t *pool, const char *string,
     00189                           apr_dbd_t *handle);
     00190   
    -00202     int (*prepare)(apr_pool_t *pool, apr_dbd_t *handle, const char *query,
    -00203                    const char *label, apr_dbd_prepared_t **statement);
    -00204 
    -00214     int (*pvquery)(apr_pool_t *pool, apr_dbd_t *handle, int *nrows,
    -00215                    apr_dbd_prepared_t *statement, va_list args);
    -00216 
    -00227     int (*pvselect)(apr_pool_t *pool, apr_dbd_t *handle,
    -00228                     apr_dbd_results_t **res,
    -00229                     apr_dbd_prepared_t *statement, int random, va_list args);
    -00230 
    -00241     int (*pquery)(apr_pool_t *pool, apr_dbd_t *handle, int *nrows,
    -00242                   apr_dbd_prepared_t *statement, int nargs,
    -00243                   const char **args);
    -00244 
    -00256     int (*pselect)(apr_pool_t *pool, apr_dbd_t *handle,
    -00257                    apr_dbd_results_t **res, apr_dbd_prepared_t *statement,
    -00258                    int random, int nargs, const char **args);
    -00259 
    -00260   
    -00267     const char* (*get_name)(const apr_dbd_results_t *res, int col);
    -00268 
    -00274     int (*transaction_mode_get)(apr_dbd_transaction_t *trans);
    -00275 
    -00282     int (*transaction_mode_set)(apr_dbd_transaction_t *trans, int mode);
    -00283 };
    +00205     int (*prepare)(apr_pool_t *pool, apr_dbd_t *handle, const char *query,
    +00206                    const char *label, int nargs, int nvals,
    +00207                    apr_dbd_type_e *types, apr_dbd_prepared_t **statement);
    +00208 
    +00218     int (*pvquery)(apr_pool_t *pool, apr_dbd_t *handle, int *nrows,
    +00219                    apr_dbd_prepared_t *statement, va_list args);
    +00220 
    +00231     int (*pvselect)(apr_pool_t *pool, apr_dbd_t *handle,
    +00232                     apr_dbd_results_t **res,
    +00233                     apr_dbd_prepared_t *statement, int random, va_list args);
    +00234 
    +00244     int (*pquery)(apr_pool_t *pool, apr_dbd_t *handle, int *nrows,
    +00245                   apr_dbd_prepared_t *statement, const char **args);
    +00246 
    +00257     int (*pselect)(apr_pool_t *pool, apr_dbd_t *handle,
    +00258                    apr_dbd_results_t **res, apr_dbd_prepared_t *statement,
    +00259                    int random, const char **args);
    +00260 
    +00261   
    +00268     const char* (*get_name)(const apr_dbd_results_t *res, int col);
    +00269 
    +00275     int (*transaction_mode_get)(apr_dbd_transaction_t *trans);
    +00276 
    +00283     int (*transaction_mode_set)(apr_dbd_transaction_t *trans, int mode);
     00284 
    -00285 /* Export mutex lock/unlock for drivers that need it */
    -00286 apr_status_t apr_dbd_mutex_lock(void);
    -00287 apr_status_t apr_dbd_mutex_unlock(void);
    -00288 
    -00289 #ifdef __cplusplus
    -00290 }
    -00291 #endif
    -00292 
    -00293 #endif
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +00286 const char *pformat; +00287 +00297 int (*pvbquery)(apr_pool_t *pool, apr_dbd_t *handle, int *nrows, +00298 apr_dbd_prepared_t *statement, va_list args); +00299 +00310 int (*pvbselect)(apr_pool_t *pool, apr_dbd_t *handle, +00311 apr_dbd_results_t **res, +00312 apr_dbd_prepared_t *statement, int random, va_list args); +00313 +00323 int (*pbquery)(apr_pool_t *pool, apr_dbd_t *handle, int *nrows, +00324 apr_dbd_prepared_t *statement,const void **args); +00325 +00336 int (*pbselect)(apr_pool_t *pool, apr_dbd_t *handle, +00337 apr_dbd_results_t **res, apr_dbd_prepared_t *statement, +00338 int random, const void **args); +00339 +00348 apr_status_t (*datum_get)(const apr_dbd_row_t *row, int col, +00349 apr_dbd_type_e type, void *data); +00350 }; +00351 +00352 /* Export mutex lock/unlock for drivers that need it */ +00353 apr_status_t apr_dbd_mutex_lock(void); +00354 apr_status_t apr_dbd_mutex_unlock(void); +00355 +00356 #ifdef __cplusplus +00357 } +00358 #endif +00359 +00360 #endif +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__dbm_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__dbm_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__dbm_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__dbm_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_dbm.h

    Go to the documentation of this file.
    00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_dbm.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -105,7 +105,7 @@
     00222 #endif
     00223 
     00224 #endif  /* !APR_DBM_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__dbm_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__dbm_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__dbm_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__dbm_8h.html Fri Feb 16 19:14:13 2007 @@ -75,7 +75,7 @@

    Detailed Description

    APR-UTIL DBM library.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__dbm__private_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__dbm__private_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__dbm__private_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__dbm__private_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_dbm_private.h

    00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_dbm_private.h

    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -115,7 +115,7 @@
     00123 #endif
     00124 
     00125 #endif /* APR_DBM_PRIVATE_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__hooks_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__hooks_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__hooks_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__hooks_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_hooks.h

    Go to the documentation of this file.
    00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_hooks.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -189,7 +189,7 @@
     00254 #endif
     00255 
     00256 #endif /* APR_HOOKS_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__hooks_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__hooks_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__hooks_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__hooks_8h.html Fri Feb 16 19:14:13 2007 @@ -73,7 +73,7 @@

    Detailed Description

    Apache hook functions.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap_8h-source.html Fri Feb 16 19:14:13 2007 @@ -133,7 +133,7 @@ 00128 00130 #endif /* APR_HAS_LDAP */ 00131 #endif /* APU_LDAP_H */ -
    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap_8h.html Fri Feb 16 19:14:13 2007 @@ -53,7 +53,7 @@

    Detailed Description

    APR-UTIL LDAP.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__init_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__init_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__init_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__init_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_ldap_init.h

    Go to the documentation of this file.
    00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_ldap_init.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -95,7 +95,7 @@
     00162 #endif /* APR_HAS_LDAP */
     00163 
     00166 #endif /* APR_LDAP_URL_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__init_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__init_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__init_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__init_8h.html Fri Feb 16 19:14:13 2007 @@ -29,7 +29,7 @@

    Detailed Description

    APR-UTIL LDAP ldap_init() functions.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__option_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__option_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__option_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__option_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_ldap_option.h

    Go to the documentation of this file.
    00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_ldap_option.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -122,7 +122,7 @@
     00236 
     00239 #endif /* APR_LDAP_OPTION_H */
     00240 
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__option_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__option_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__option_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__option_8h.html Fri Feb 16 19:14:13 2007 @@ -29,7 +29,7 @@

    Detailed Description

    APR-UTIL LDAP ldap_*_option() functions.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__url_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__url_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__url_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__url_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_ldap_url.h

    Go to the documentation of this file.
    00001 /* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_ldap_url.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -96,7 +96,7 @@
     00113 #endif /* APR_HAS_LDAP */
     00114 
     00117 #endif /* APR_LDAP_URL_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__url_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__url_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__url_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__ldap__url_8h.html Fri Feb 16 19:14:13 2007 @@ -28,7 +28,7 @@

    Detailed Description

    APR-UTIL LDAP ldap_init() functions.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__md4_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__md4_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__md4_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__md4_8h-source.html Fri Feb 16 19:14:13 2007 @@ -18,12 +18,12 @@
  • File List
  • Globals
  • -

    apr_md4.h

    Go to the documentation of this file.
    00001 /* Copyright 2001-2005 The Apache Software Foundation or its licensors, as
    -00002  * applicable.
    -00003  *
    -00004  * Licensed under the Apache License, Version 2.0 (the "License");
    -00005  * you may not use this file except in compliance with the License.
    -00006  * You may obtain a copy of the License at
    +

    apr_md4.h

    Go to the documentation of this file.
    00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
    +00002  * contributor license agreements.  See the NOTICE file distributed with
    +00003  * this work for additional information regarding copyright ownership.
    +00004  * The ASF licenses this file to You under the Apache License, Version 2.0
    +00005  * (the "License"); you may not use this file except in compliance with
    +00006  * the License.  You may obtain a copy of the License at
     00007  *
     00008  *     http://www.apache.org/licenses/LICENSE-2.0
     00009  *
    @@ -108,7 +108,7 @@
     00133 #endif
     00134 
     00135 #endif /* !APR_MD4_H */
    -

    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +

    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__md4_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__md4_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__md4_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__md4_8h.html Fri Feb 16 19:14:13 2007 @@ -50,7 +50,7 @@

    Detailed Description

    APR-UTIL MD4 Library.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__md5_8h-source.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__md5_8h-source.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__md5_8h-source.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__md5_8h-source.html Fri Feb 16 19:14:13 2007 @@ -114,7 +114,7 @@ 00160 #endif 00161 00162 #endif /* !APR_MD5_H */ -
    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1
    Modified: apr/site/trunk/docs/docs/apr-util/trunk/apr__md5_8h.html URL: http://svn.apache.org/viewvc/apr/site/trunk/docs/docs/apr-util/trunk/apr__md5_8h.html?view=diff&rev=508704&r1=508703&r2=508704 ============================================================================== --- apr/site/trunk/docs/docs/apr-util/trunk/apr__md5_8h.html (original) +++ apr/site/trunk/docs/docs/apr-util/trunk/apr__md5_8h.html Fri Feb 16 19:14:13 2007 @@ -54,7 +54,7 @@

    Detailed Description

    APR MD5 Routines.

    -


    Generated on Wed Dec 27 11:19:24 2006 for Apache Portable Runtime Utility Library by  +
    Generated on Sat Feb 17 13:54:16 2007 for Apache Portable Runtime Utility Library by  doxygen 1.5.1