#include <windows.h> #include "resource.h" LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); HINSTANCE hInst; TCHAR szAppName[] = TEXT("PopMenu"); ...
分类:
其他好文 时间:
2020-12-05 10:55:56
阅读次数:
8
#include <windows.h> #include "resource.h" #define ID_TIMER 1 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); TCHAR szAppName[] = TEXT("MenuDemo ...
分类:
其他好文 时间:
2020-12-03 12:21:35
阅读次数:
5
C# 中大端序与小端序 static void Main(string[] args) { uint value = 0x12345678; Console.WriteLine("原始字节序:0x12345678"); byte[] bigLittleEndian = BitConverter.Ge ...
#include <windows.h> #define BUFFER(x,y) *(pBuffer + y*cxBuffer + x) LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); int min(int a, int b) { ret ...
分类:
其他好文 时间:
2020-09-24 21:56:40
阅读次数:
47
Go语言十进制转二进制字符串 代码Demo func Test_2(t *testing.T) { // 方法一 fmt.Println(DecToBin(5)) // 方法二:导入包"github.com/imroc/biu" fmt.Println(biu.ToBinaryString(uint ...
分类:
编程语言 时间:
2020-09-24 21:14:27
阅读次数:
71
//窗口过程函数INT_PTR CALLBACK myWin::myWinDlgProc(HWND dlgHwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { switch (uMsg) { case WM_COMMAND: { OnCommand(wPa ...
一、基本数据类型 1 整型 分为int、uint,uint8是byte型,int16对应C中的short型,int64 对应long型 2 特殊整型 uintptr 无符号整型,用于存放一个指针 3 浮点型 float32和float64 4 复数 complex64和complex128 5 by ...
分类:
其他好文 时间:
2020-08-26 17:13:37
阅读次数:
54
问题描述 zabbix server 平稳运行有一段时间了,但是最近问题却来了,今天早上收到zabbixserver磁盘空间不足的告警。通过查看之后发现是大部分数据是zabbix 库的的数据 在进一步查看发现是history表和history_uint数据太多导致磁盘占用过多。 问题分析 histo ...
分类:
其他好文 时间:
2020-08-24 15:15:48
阅读次数:
54
交通灯状态转换: (其中黄灯会进行闪烁) #include <msp430.h> typedef unsigned char uchar; typedef unsigned int uint; const uchar STATES[4] = { 0xCC, 0xD4, 0x78, 0xAC }; v ...
分类:
其他好文 时间:
2020-07-27 16:03:34
阅读次数:
98
/* RANDRECT.C -- Displays Random Rectangles */ #include <windows.h> #include <stdlib.h> //for the rand function LRESULT CALLBACK WndProc(HWND,UINT,WPA ...
分类:
其他好文 时间:
2020-07-16 22:08:07
阅读次数:
107