摘要: 从可执行文件中载入指定的光标资源,加载到指定的应用实例中 ? 1 2 3 4 5 HCURSORWINAPI LoadCursor( ... 阅读全文
posted @ 2013-12-22 15:16 李晓茂的杂货铺 阅读(1317) 评论(0) 推荐(0) 编辑
摘要: 数据结构RECT定义了一个矩形的左上角和右下角的坐标?12345678typedefstruct_RECT{ LONGleft; LONGtop; LONGright; LONGbottom;}RECT,*PRECT; 成员left矩形左上角的x坐标top矩形左上角的Y坐标right矩形右下角的x坐标bottom矩形右下角Y坐标 阅读全文
posted @ 2013-12-21 23:03 李晓茂的杂货铺 阅读(315) 评论(0) 推荐(0) 编辑
摘要: NASM中的times相当于MASM中的dup起到重复定义的作用. $表示当前行的偏移地址,$$表示当前段的起始偏移地址, ;---------------------------------------------------------- times 510-($-$$) db 0 db 0x55,0xaa 阅读全文
posted @ 2013-12-20 22:04 李晓茂的杂货铺 阅读(960) 评论(0) 推荐(0) 编辑
摘要: 1.CFDISK 命令分区一个主分区和一个逻辑分区2.partprobe /dev/sdx 刷新分区表3.mkfs4.5.6.>dhcpcd7.8.9.10.11.12.13.14.15. 阅读全文
posted @ 2013-12-19 23:29 李晓茂的杂货铺 阅读(191) 评论(0) 推荐(0) 编辑
摘要: Bochs User ManualChapter 8. Tips and Techniques8.12. Using Bochs internal debuggerNote, if you are looking for a graphical front-end for the bochs debugger, you may want to check out BFE. This is a package written by a Bochs user which can interface with the text based Bochs debugger. No linking is 阅读全文
posted @ 2013-12-19 23:16 李晓茂的杂货铺 阅读(334) 评论(0) 推荐(0) 编辑
摘要: Primitive Data TypesThe Java programming language is statically-typed, which means that all variables must first be declared before they can be used. This involves stating the variable's type and name, as you've already seen:int gear = 1;Doing so tells your program that a field named "g 阅读全文
posted @ 2013-12-19 16:49 李晓茂的杂货铺 阅读(527) 评论(0) 推荐(0) 编辑