Changeset 5a6cc679 in mainline for uspace/app/edit/search.h


Ignore:
Timestamp:
2018-01-31T02:21:24Z (8 years ago)
Author:
Jenda <jenda.jzqk73@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a0a9cc2
Parents:
132ab5d1
Message:

Merge commit '50f19b7ee8e94570b5c63896736c4eb49cfa18db' into forwardport

Not all ints are converted to errno_t in xhci tree yet, however it compiles and works :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/edit/search.h

    r132ab5d1 r5a6cc679  
    4343typedef struct search search_t;
    4444typedef bool (*search_equals_fn)(const wchar_t, const wchar_t);
    45 typedef int (*search_producer_fn)(void *, wchar_t *);
    46 typedef int (*search_mark_fn)(void *, void **);
     45typedef errno_t (*search_producer_fn)(void *, wchar_t *);
     46typedef errno_t (*search_mark_fn)(void *, void **);
    4747typedef void (*search_mark_free_fn)(void *);
    4848
     
    6161extern bool char_exact_equals(const wchar_t, const wchar_t);
    6262extern search_t *search_init(const char *, void *, search_ops_t, bool);
    63 extern int search_next_match(search_t *, match_t *);
     63extern errno_t search_next_match(search_t *, match_t *);
    6464extern void search_fini(search_t *);
    6565
Note: See TracChangeset for help on using the changeset viewer.