mirror of https://github.com/BOINC/boinc.git
27 lines
420 B
C
27 lines
420 B
C
/* Local variables: */
|
|
/* c-file-style: "linux" */
|
|
/* End: */
|
|
|
|
#ifndef _DC_API_CONDOR_MASTER_H_
|
|
#define _DC_API_CONDOR_MASTER_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "dc.h"
|
|
|
|
|
|
extern DC_PhysicalFile *_DC_createPhysicalFile(const char *label,
|
|
const char *path);
|
|
extern void _DC_destroyPhysicalFile(DC_PhysicalFile *file);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
/* End of condor/condor_master.h */
|