12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #ifndef __OSC_MATCH_H__
- #define __OSC_MATCH_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
-
-
-
-
-
- #define OSC_MATCH_ADDRESS_COMPLETE 1
-
-
- #define OSC_MATCH_PATTERN_COMPLETE 2
-
-
-
- int osc_match(const char *pattern, const char *address, int *pattern_offset, int *address_offset);
-
- #ifdef __cplusplus
- }
- #endif
- #endif
|