ucx/ucx.h

Tue, 06 Aug 2013 10:22:03 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Tue, 06 Aug 2013 10:22:03 +0200
changeset 131
fc3af16818a3
parent 127
5418bda21896
child 132
c7d7e4eeb76b
permissions
-rw-r--r--

fixed some warnings when compiling with the sun C++ Compiler

     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2013 Olaf Wintermann. All rights reserved.
     5  *
     6  * Redistribution and use in source and binary forms, with or without
     7  * modification, are permitted provided that the following conditions are met:
     8  *
     9  *   1. Redistributions of source code must retain the above copyright
    10  *      notice, this list of conditions and the following disclaimer.
    11  *
    12  *   2. Redistributions in binary form must reproduce the above copyright
    13  *      notice, this list of conditions and the following disclaimer in the
    14  *      documentation and/or other materials provided with the distribution.
    15  *
    16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
    20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    26  * POSSIBILITY OF SUCH DAMAGE.
    27  */
    28 /**
    29  * Main UCX Header providing most common definitions.
    30  * 
    31  * @file   ucx.h
    32  * @author Mike Becker
    33  * @author Olaf Wintermann
    34  */
    36 #ifndef UCX_H
    37 #define	UCX_H
    39 #include <stdlib.h>
    41 #ifdef _WIN32
    42 #ifndef __ssize_t_defined
    43 #include <BaseTsd.h>
    44 typedef SSIZE_T ssize_t;
    45 #define __ssize_t_defined
    46 #endif /* __ssize_t_defined */
    47 #else /* !_WIN32 */
    48 #include <sys/types.h>
    49 #endif /* _WIN32 */
    51 #ifdef	__cplusplus
    52 #ifndef _Bool
    53 #define _Bool bool
    54 #define restrict
    55 #endif
    56 #define UCX_EXTERN extern "C"
    57 extern "C" {
    58 #else
    59 #define UCX_EXTERN
    60 #endif
    62 /**
    63  * Function pointer to a compare function.
    64  * 
    65  * The compare function shall take three arguments: the two values that shall be
    66  * compared and optional additional data.
    67  * The function shall then return -1 if the first argument is less than the
    68  * second argument, 1 if the first argument is greater than the second argument
    69  * and 0 if both arguments are equal. If the third argument is
    70  * <code>NULL</code>, it shall be ignored.
    71  */
    72 typedef int(*cmp_func)(void*,void*,void*);
    74 /**
    75  * Function pointer to a copy function.
    76  * 
    77  * The copy function shall create a copy of the first argument and may use
    78  * additional data provided by the second argument. If the second argument is
    79  * <code>NULL</code>, it shall be ignored.
    81  * <b>Attention:</b> if pointers returned by functions of this type may be
    82  * passed to <code>free()</code> depends on the implementation of the
    83  * respective <code>copy_func</code>.
    84  */
    85 typedef void*(*copy_func)(void*,void*);
    87 /**
    88  * Function pointer to a write function.
    89  * 
    90  * The signature of the write function shall be compatible to the signature
    91  * of standard <code>fwrite</code>, though it may use arbitrary data types for
    92  * source and destination.
    93  * 
    94  * The arguments shall contain (in ascending order): a pointer to the source,
    95  * the length of one element, the element count and a pointer to the
    96  * destination.
    97  */
    98 typedef size_t(*write_func)(const void*, size_t, size_t, void*);
   100 /**
   101  * Function pointer to a read function.
   102  * 
   103  * The signature of the read function shall be compatible to the signature
   104  * of standard <code>fread</code>, though it may use arbitrary data types for
   105  * source and destination.
   106  * 
   107  * The arguments shall contain (in ascending order): a pointer to the
   108  * destination, the length of one element, the element count and a pointer to
   109  * the source.
   110  */
   111 typedef size_t(*read_func)(void*, size_t, size_t, void*);
   113 #ifdef	__cplusplus
   114 }
   115 #endif
   117 #endif	/* UCX_H */

mercurial