projects
/
gp-arc-client-c.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
megoldas a loggerre, egyeb javitasok
[gp-arc-client-c.git]
/
src
/
submit.h
1
/*
2
* submit.h
3
* arcclientc
4
*
5
* Created by Tamas Jung on 4/7/10.
6
* Copyright 2010 Interface Kft. All rights reserved.
7
*
8
*/
9
10
#ifndef submit_
11
#define submit_
12
13
#include "common_utils.h"
14
15
typedef struct{
16
char* message;//might be NULL
17
char* job_id;//might be NULL
18
} submit_result_t;
19
20
PUBLIC_C submit_result_t* submit(int argc, char **argv);
21
22
#endif
23