Ignore:
Timestamp:
Feb 25, 2007, 8:44:23 PM (17 years ago)
Author:
dkearney
Message:

Added putFile capability to octave, matlab, fortran, perl bindings
Adjusted the core putFile function and all put functions to accept unsigned ints
added enum flags for binary and text file for the putFile function in c/c++

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/fortran/RpLibraryFInterface.h

    r554 r591  
    55 * ======================================================================
    66 *  AUTHOR:  Derrick S. Kearney, Purdue University
    7  *  Copyright (c) 2004-2005  Purdue Research Foundation
     7 *  Copyright (c) 2004-2007  Purdue Research Foundation
    88 *
    99 *  See the file "license.terms" for information on usage and
     
    9595                            int id_len );
    9696
     97void rp_lib_put_data (      int* handle,
     98                            char* path,
     99                            char* bytes,
     100                            int* nbytes,
     101                            int* append,
     102                            int path_len,
     103                            int bytes_len );
     104
     105void rp_lib_put_file (      int* handle,
     106                            char* path,
     107                            char* fileName,
     108                            int* fileType,
     109                            int* append,
     110                            int path_len,
     111                            int fileName_len );
     112
    97113/*
    98114 * rp_lib_put_obj still needs to be written
Note: See TracChangeset for help on using the changeset viewer.