Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions c/include/libfreenect.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ This code is licensed to you under the terms of the GNU GPL, version 2 or versio
typedef void (*depthcb)(uint16_t *buf, int width, int height);
typedef void (*rgbcb)(uint8_t *buf, int width, int height);

void cams_init(libusb_device_handle *d, depthcb depth_cb, rgbcb rgb_cb);
#ifdef __cplusplus
extern "C" {
#endif
void cams_init(libusb_device_handle *d, depthcb depth_cb, rgbcb rgb_cb);
#ifdef __cplusplus
}
#endif

#endif
#endif