码迷,mamicode.com
首页 >  
搜索关键字:uint srcrowpitch    ( 791个结果
导入贴图操作:处理贴图MaxSize和Format
using UnityEngine;using System.Collections;using UnityEditor;public class ImportModflyTextures : AssetPostprocessor{ private uint m_Version = 0; ...
分类:其他好文   时间:2014-05-28 21:20:56    阅读次数:427
[51单片机] SPI nRF24L01无线 [可以放在2个单片机里实现通信]
main.c 1 #include 2 #include"2401.h" 3 4 #define uint unsigned int 5 #define uchar unsigned char 6 7 sbit KEY8=P3^7; //发送按键 8 sbit beep=P2^3;//...
分类:其他好文   时间:2014-05-27 23:56:22    阅读次数:599
无边框缩放
实现效果需要处理以下这三个消息:WM_NCHITTEST WM_SETCURSOR WM_NCLBUTTONDOWN很多人在问三个函数是做什么用的,下面我大概介绍一下:OnNcHitTest(UINT nHitTest, CPoint point)是用来测试鼠标的位置,Nc表示非客户区OnSetCu...
分类:其他好文   时间:2014-05-27 18:08:42    阅读次数:394
<C++>创建窗口
Step 1:WNDCLASStypedef struct _WNDCLASS{ UINT style; WNDPROC lpfnWndProc; int cbClsExtra; int cbWndExtra; ...
分类:编程语言   时间:2014-05-26 11:02:57    阅读次数:229
<C++>消息循环
GetMessage Function:BOOL GetMessage( LPMSG lpMsg, HWND hWnd, UINT wMsgFilterMin, UINT wMsgFilterMax);消息循环:MSG msg;whil...
分类:编程语言   时间:2014-05-26 10:51:13    阅读次数:257
单片机程序模板
#include //头文件调用,写程序时都要加上,#define uint unsigned int //宏定义,为了后面定义变量书写简便#define uchar unsigned charuchar mm=0; //全局变量uchar flag_get=0; //定义标志位,为1则灯亮/**....
分类:其他好文   时间:2014-05-26 08:42:09    阅读次数:276
SetTimer时间间隔的问题
1、用WM_TIMER来设置定时器   SetTimer函数的原型 UINT_PTR SetTimer( HWND hWnd,                      // 窗口句柄 UINT_PTR nIDEvent,          // 定时器ID,多个定时器时,可以通过该ID判断是哪个定时器 UINT nElapse,                     // 时间间...
分类:其他好文   时间:2014-05-25 11:05:38    阅读次数:188
Windows编程之MDI
MDI 创建 1 CilentWindow 1.1 CLIENTCREATESTRUCT typedefstruct tagCLIENTCREATESTRUCT {     HANDLE hWindowMenu;     UINT  idFirstChild; } CLIENTCREATESTRUCT, *LPCLIENTCREATESTRUCT; hWindowMenu  多文...
分类:Windows程序   时间:2014-05-23 01:04:38    阅读次数:463
创建一个Windows窗体
vs2010下的代码提示快捷键:CTRL + Jstep:窗口类赋值(12个参数)注册窗口类创建窗口消息循环#include#includeLRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);...
分类:Windows程序   时间:2014-05-22 16:20:18    阅读次数:294
CString Format的用法
在MFC中会经常用到CString::Format。下面是我收集的一些资料。 官方定义: CString::Format void Format( LPCTSTR lpszFormat, ... ); void Format( UINT nFormatID, ... ); Parameters lpszFormat A format-con...
分类:其他好文   时间:2014-05-21 13:32:41    阅读次数:274
791条   上一页 1 ... 75 76 77 78 79 80 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!