码迷,mamicode.com
首页 >  
搜索关键字:拇指接龙游戏 win32 android移植    ( 4408个结果
滴水Win32练习壳的学习与实现
前言:花了一天时间写完之后,自己困惑了好久,因为自己不会用,一直没有看到视频中的演示过程,纠结许久,最后看了下前面的演示教程发现懂了。。。 加密具体代码参考:https://github.com/adezz/PeDialog 解密具体代码参考:https://github.com/adezz/She ...
分类:Windows程序   时间:2020-07-03 23:41:28    阅读次数:114
WIN32 远程注入 CreateRemoteThread
// remote06.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "windows.h" BOOL func(DWORD ProcessID,char* Dll ...
分类:Windows程序   时间:2020-06-30 19:03:52    阅读次数:75
win32-改变显示器的亮度
调用SetMonitorBrightness 代码示例: #pragma comment(lib, "dxva2.lib") #include <windows.h> #include <lowlevelmonitorconfigurationapi.h> #include <physicalmon ...
分类:Windows程序   时间:2020-06-30 17:13:39    阅读次数:94
win32释放资源
BOOL FreeMyResource(UINT uResouceName,char *szResourceType,char *szFileName) { HRSRC hRsrc = ::FindResource(NULL,MAKEINRESOURCE(uResouceName),szResour ...
分类:Windows程序   时间:2020-06-30 10:24:32    阅读次数:60
windows下office安装 遇到需要安装msxml 6.0
office2010安装提示报错 由于下列原因,安装程序无法继续,需要计算机安装MSXML版本6.10.1129.0 step one 1.查看电脑是32还是64位。选择对应下载。 https://www.microsoft.com/zh-cn/download/details.aspx?id=62 ...
分类:Windows程序   时间:2020-06-30 10:23:30    阅读次数:67
nodejs文本文件的读写
文本文件的换行符 方法一: var EOL = fileContents.indexOf("\r\n") >= 0 ? "\r\n" : "\n"; 方法二: var EOL = (process.platform 'win32' ? '\r\n' : '\n') 删除文件 var fs = req ...
分类:Web程序   时间:2020-06-29 20:12:49    阅读次数:82
更改为win下跨平台的程序
#include <winsock2.h> #ifdef _WIN32 WORD wVersionRequested; WSADATA wsaData; int err; int connectCount = 0; struct sockaddr_in RecvIndexAddr; int nNet ...
分类:Windows程序   时间:2020-06-29 13:13:55    阅读次数:72
win32-改变Combox的编辑框和下拉列表的背景颜色和文本字体颜色
只需要调用WM_CTLCOLORLISTBOX和WM_CTLCOLOREDIT来分别处理编辑框和下拉列表。 Combox的创建: int xpos = 100; // Horizontal position of the window. int ypos = 100; // Vertical pos ...
分类:Windows程序   时间:2020-06-29 11:30:37    阅读次数:89
Unity3D2018.3版本打包UWP遇到IOException: Win32 IO return
Unity3D2018.3版本打包UWP遇到IOException: Win32 IO return
分类:编程语言   时间:2020-06-28 16:48:35    阅读次数:172
WPF中使用OpenFileDialog打开文件
添加Microsoft.Win32程序集 private void OnOpenFile(object sender, EventArgs e) { OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.Title ...
分类:Windows程序   时间:2020-06-27 11:54:45    阅读次数:98
4408条   上一页 1 ... 7 8 9 10 11 ... 441 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!