WVR_StartMarker¶
-
WVR_EXPORT WVR_Result WVR_StartMarker()
Function is used to start the marker features.
This API will start marker device service to manage the system resource of the markers.
- Version
- API Level 13
- Return Value
WVR_Success
: Start marker successfully.others
: WVR_Result mean failure.
How to use¶
Sample function:
#include <wvr/wvr_marker.h>
if (WVR_StartMarker() == WVR_Success) {
// start marker related operation
WVR_StopMarker();
} else {
// start marker failed!
}