2025-07-23 01:35:14 +08:00
|
|
|
|
#pragma once
|
|
|
|
|
|
//<2F><><EFBFBD><EFBFBD>ͷ<EFBFBD>ļ<EFBFBD>
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
|
|
#include <cstring>
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
|
|
|
|
//<2F><><EFBFBD><EFBFBD>
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
|
|
|
|
//<2F>ַ<EFBFBD><D6B7><EFBFBD>
|
|
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
|
|
|
|
#include "VrError.h"
|
|
|
|
|
|
#include "VrCmd.h"
|
|
|
|
|
|
#include "VrVersion.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define PI 3.14159265358979323846
|
|
|
|
|
|
|
|
|
|
|
|
#define VR_IP_LEN 16
|
|
|
|
|
|
#define VR_IP_HEX_LEN 4
|
|
|
|
|
|
|
|
|
|
|
|
#define VR_MAC_LEN 18
|
|
|
|
|
|
#define VR_MAC_HEX_LEN 6
|
|
|
|
|
|
|
|
|
|
|
|
#define VR_NAME_LEN 64
|
|
|
|
|
|
#define VR_DESC_LEN 256
|
|
|
|
|
|
|
|
|
|
|
|
#define VR_MD5DATA_LEN 32
|
|
|
|
|
|
|
|
|
|
|
|
#define UNUSED(x) (void)x
|
|
|
|
|
|
|
|
|
|
|
|
namespace CVrCommon
|
|
|
|
|
|
{
|
|
|
|
|
|
|
2025-06-08 12:48:04 +08:00
|
|
|
|
};
|