source: trunk/lang/R/Rappture/src/RpUtilsRInterface.h @ 2780

Last change on this file since 2780 was 2780, checked in by dkearney, 13 years ago

adding function rp_utils_progress(percent,message) where percent should be an integer (but can be a double that will be coerced to an integer) between 0 and 100 representing the amount of the application that has completed, and message is a string giving information about the amount of progress complete.

File size: 698 bytes
Line 
1/*
2 * ----------------------------------------------------------------------
3 *  INTERFACE: R Rappture Utils Source
4 *
5 * ======================================================================
6 *  AUTHOR:  Derrick Kearney, Purdue University
7 *  Copyright (c) 2005-2011  Purdue Research Foundation
8 *
9 *  See the file "license.terms" for information on usage and
10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
11 * ======================================================================
12 */
13
14#include <R.h>
15#include <Rinternals.h>
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21SEXP RPRUtilsProgress (SEXP percent, SEXP message) ;
22
23#ifdef __cplusplus
24}
25#endif // ifdef __cplusplus
26
Note: See TracBrowser for help on using the repository browser.