EnumcameraObjects in Cameraremote gibt SDK einen Fehlercode zurück, der keine Definition aufweist (Fehler 1)

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: EnumcameraObjects in Cameraremote gibt SDK einen Fehlercode zurück, der keine Definition aufweist (Fehler 1)

by Anonymous » 19 Aug 2025, 09:33

Code: Select all

#include 

#include 

#include "../CRSDK/CameraRemote_SDK.h"

#include "Text.hpp"

int main(int argc, const char * argv[]) {

auto init_success = SCRSDK::Init(); // SDK Initialization, works fine

if (!init_success) {

SDKTest::tout Release();

SCRSDK::Release();

std::exit(EXIT_FAILURE);

}

SDKTest::tout > 24;

int minor = (version & 0x00FF0000) >> 16;

int patch = (version & 0x0000FF00) >> 8;

SDKTest::tout

Top