// Login to the device NET_DEVICEINFO deviceInfo; char* pUserName = "your_username"; char* pPassword = "your_password"; char* pIP = "device_ip_address"; int nPort = 8000; // Default port
NET_Login(pIP, nPort, pUserName, pPassword, &deviceInfo);
#include <Windows.h>
int main() { // SDK Initialization NET_SDK InitStatus = NET_Init(); if (InitStatus != NET_OK) { // Handle initialization error printf("SDK Init failed!\n"); return -1; }
extern "C" { #include "HCNetSDK.h" }