38 lines
514 B
C++
38 lines
514 B
C++
#pragma once
|
|
//»ù´¡Í·Îļþ
|
|
#include <iostream>
|
|
#include <cstdio>
|
|
#include <cstring>
|
|
#include <cstdlib>
|
|
|
|
//ÈÝÆ÷
|
|
#include <map>
|
|
#include <vector>
|
|
#include <list>
|
|
|
|
//×Ö·ûÁ÷
|
|
#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
|
|
{
|
|
|
|
}; |