- Timestamp:
- Jan 12, 2013, 1:43:13 PM (11 years ago)
- Children:
- e3a0d71, 4485285
- Parents:
- 4626016
- git-author:
- Jason Gross <jgross@mit.edu> (01/12/13 13:13:18)
- git-committer:
- Jason Gross <jgross@mit.edu> (01/12/13 13:43:13)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
owl.h
rc42a8d1 r7869e48 74 74 #endif /* !OWL_VERSION_STRING */ 75 75 76 /* Feature that is being tested to redirect stderr through a pipe. 76 /* Feature that is being tested to redirect stderr through a pipe. 77 77 * There may still be some portability problems with this. */ 78 78 #define OWL_STDERR_REDIR 1 … … 243 243 int (*validate_fn)(const struct _owl_variable *v, const void *newval); 244 244 /* returns 1 if newval is valid */ 245 int (*set_fn)(struct _owl_variable *v, const void *newval); 245 int (*set_fn)(struct _owl_variable *v, const void *newval); 246 246 /* sets the variable to a value 247 247 * of the appropriate type. 248 * unless documented, this 249 * should make a copy. 248 * unless documented, this 249 * should make a copy. 250 250 * returns 0 on success. */ 251 251 int (*set_fromstring_fn)(struct _owl_variable *v, const char *newval); 252 252 /* sets the variable to a value 253 253 * of the appropriate type. 254 * unless documented, this 255 * should make a copy. 254 * unless documented, this 255 * should make a copy. 256 256 * returns 0 on success. */ 257 257 const void *(*get_fn)(const struct _owl_variable *v); … … 313 313 314 314 char *cmd_aliased_to; /* what this command is aliased to... */ 315 315 316 316 /* These don't take any context */ 317 317 CALLER_OWN char *(*cmd_args_fn)(int argc, const char *const *argv, const char *buff); … … 406 406 owl_window *cmdwin; 407 407 } owl_viewwin; 408 408 409 409 typedef struct _owl_popwin { 410 410 owl_window *border; … … 413 413 gulong sig_resize_id; 414 414 } owl_popwin; 415 415 416 416 typedef struct _owl_msgwin { 417 417 char *msg;
Note: See TracChangeset
for help on using the changeset viewer.