摘要:
#include#include#include"resource.h"#pragma comment(lib,"comctl32.lib")HWND CreateToolTips(HWND hWnd1,HINSTANCE hInst,HWND DlgItem,WCHAR *szName,int n=1);LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);int APIENTRY WinMain(HINSTANCE hInstance, HINS 阅读全文
摘要:
测试一个win32 asm的随机数算法: .386 .model flat, stdcall option casemap :none include windows.incinclude kernel32.incinclude msvcrt.incincludelib kernel32.libincludelib msvcrt.lib .dataseed dd 108f22afh;count dd ... 阅读全文