mirror of https://github.com/BOINC/boinc.git
13 lines
235 B
C
13 lines
235 B
C
|
/*
|
||
|
* Common definitions used by both the master and the client
|
||
|
*/
|
||
|
|
||
|
#ifndef COMMON_H
|
||
|
#define COMMON_H
|
||
|
|
||
|
/* Logical names of the input/output files */
|
||
|
#define INPUT_LABEL "in.txt"
|
||
|
#define OUTPUT_LABEL "out.txt"
|
||
|
|
||
|
#endif /* COMMON_H */
|