IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 2, 2005, 1:49:08 PM (21 years ago)
Author:
jhoblitt
Message:

[nebclient] add nebOpenCreate()
[nebclient] change nebCreate() to return just a filename

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/nebclient/src/nebclient.h

    r4662 r5661  
    44 * Copyright (C) 2005  Joshua Hoblitt
    55 *
    6  * $Id: nebclient.h,v 1.29 2005-07-29 02:48:20 jhoblitt Exp $
     6 * $Id: nebclient.h,v 1.30 2005-12-02 23:49:08 jhoblitt Exp $
    77 */
    88
     
    7272);
    7373
    74 /** Creates and opens new storage object
    75  *
    76  * @return A filehandle on success or a negative value on failure.
    77  */
    78 
    79 int nebCreate(
     74/** Creates a new storage object
     75 *
     76 * @return A local filename
     77 */
     78
     79char *nebCreate(
    8080    nebServer *server,                  ///< nebServer object
    8181    const char *key,                    ///< storage object key (name)
     
    8686);
    8787
     88/** Creates and opens new storage object
     89 *
     90 * @return A filehandle on success or a negative value on failure.
     91 */
     92
     93int nebOpenCreate(
     94    nebServer *server,                  ///< nebServer object
     95    const char *key,                    ///< storage object key (name)
     96    unsigned int class,                 ///< storage object storage class
     97    const char *volume,                 ///< preferred storage location of initial instance
     98    const char *comment,                ///< storage object comment
     99    char **URI                          ///< URL of initial instance, can be NULL
     100);
     101
    88102/** Adds an instance to a storage object
    89103 *
Note: See TracChangeset for help on using the changeset viewer.