摘要:
//dll头文件 #ifndef MYDLL_H #define MYDLL_H #ifndef MYDLL_EXPORT #define MYDLL _declspec(dllexport) #else #define MYDLL _declspec(dllimport) #endif //dll 阅读全文
摘要:
#include <iostream> using namespace std; #include<string> //按位取得年份,年份用第一个字节的前7位存储,则将该字节向右移动一位即可获得 int GetYear(const unsigned char buffer) { int mask = 阅读全文
摘要:
#include <iostream> using namespace std; #include<string> //判断1个字节某个位是0或者是1 传入一个字节和要查询的位 bool decide(unsigned char& status,int num) { // 左移操作, 并让传入的变量 阅读全文