152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
/*
** Parameters for the create-branch operation.
*/
typedef struct BranchCreateOptions{
char const * zName;
char const * zBasis;
char const * zColor;
char isPrivate;
/**
Might be set to an error string by
json_branch_new().
*/
char const * rcErrMsg;
} BranchCreateOptions;
|
|
|
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
/*
** Parameters for the create-branch operation.
*/
typedef struct BranchCreateOptions{
char const * zName;
char const * zBasis;
char const * zColor;
int isPrivate;
/**
Might be set to an error string by
json_branch_new().
*/
char const * rcErrMsg;
} BranchCreateOptions;
|