boinc/dcapi/include/dc_internal.h

39 lines
753 B
C
Raw Normal View History

/*
* DC-API: Distributed Computing Platform for Master-Worker Applications
*
* Internal definitions
*
* Authors:
* Gabor Gombas <gombasg@sztaki.hu>
*
* Copyright MTA SZTAKI, 2006
*/
/* <Tell gtk-doc that this is a private_header> */
#ifndef __DC_INTERNAL_H_
#define __DC_INTERNAL_H_
#ifdef __cplusplus
extern "C" {
#endif
/********************************************************************
* Function prototypes
*/
/* Parses a configuration file */
int _DC_parseCfg(const char *cfgfile);
/* Copies a file */
int _DC_copyFile(const char *src, const char *dst);
/* Processes a unit suffix and adjust the value accordingly */
long long _DC_processSuffix(const char *suffix);
#ifdef __cplusplus
}
#endif
#endif /* __DC_INTERNAL_H_ */