收录查询
摘要: STARTUPINFO The STARTUPINFO structure is used with the CreateProcess function to specify main window properties if a new window is created for the new process. For graphical user interface (GUI) proce... 阅读全文
posted @ 2006-09-24 18:04 -> 阅读(818) 评论(0) 推荐(0) 编辑
摘要: 下面用红色字体,做部分解释: 1/**//*** 2*crt0.c - C runtime initialization routine 3* 4* Copyright (c) 1989-1997, Microsoft Corporation. All rights reserved. 5* 6*Purpose: 7* This the actual sta... 阅读全文
posted @ 2006-09-24 17:45 -> 阅读(2268) 评论(0) 推荐(0) 编辑
摘要: http://f4l.sourceforge.net/顺便COPY段代码先扔这里:--- d:\vsprojects\vcpros\consolepros\vckbase1\first.cpp -------------------1: #include <stdio.h>2:3: int main(int argc, char** argv, char** envp)4: {0040... 阅读全文
posted @ 2006-09-24 17:31 -> 阅读(789) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://blog.csdn.net/absurd/archive/2006/02/28/612612.aspx Linux下的调试工具 随着XP的流行,人们越来越注重软件的前期设计、后期的实现,以及贯穿于其中的测试工作,经过这个过程出来的自然是高质量的软件。甚至有人声称XP会淘汰调试器!这当然是有一定道理的,然而就目前的现实来看,这还是一种理想。在日常工作中,调试工具还是必不可... 阅读全文
posted @ 2006-09-24 17:28 -> 阅读(849) 评论(0) 推荐(0) 编辑
摘要: bootsect.s:该程序的主要作用是首先将setup模块从磁盘加载到内存,紧接着bootsect后面的位置,然后利用BIOS中断0X13取磁盘参数表中当前启动引导盘的参数,接着在屏幕上显示“LOADING SYSTEM...”字符串,再将system模块从磁盘上加载到内存0X10000开始的地方。随后确定根文件系统的设备号,若没有设定,则根据保存的引导盘的每磁道扇区数判别出盘的类型和种类并保存... 阅读全文
posted @ 2006-09-24 17:21 -> 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 1. 《跟我一起写MAKEFILE》原文地址:http://blog.csdn.net/haoel/category/9198.aspx2. 《用GDB调试程序》原文地址:http://blog.csdn.net/haoel/archive/2003/07/02/2879.aspx 阅读全文
posted @ 2006-09-24 17:01 -> 阅读(460) 评论(0) 推荐(0) 编辑
摘要: drwtsn32 调试windows程序:原文地址:http://blog.csdn.net/OpenHero/archive/2006/04/28/694232.aspx 一直忙着调试代码,写服务器的代码,有时候真叫人郁闷,郁闷的是要高性能的保持程序继续运行n多天还没有事情,本来这也是程序员该做的事情,但是有时候一些长期积累下来的问题会造成程序指明性的打击~~~ 在写这个程序的时候,本机调试代码... 阅读全文
posted @ 2006-09-24 16:46 -> 阅读(1153) 评论(0) 推荐(0) 编辑
摘要: "^\d+$" //非负整数(正整数 + 0) "^[0-9]*[1-9][0-9]*$" //正整数 "^((-\d+)(0+))$" //非正整数(负整数 + 0) "^-[0-9]*[1-9][0-9]*$" //负整数 "^-?\d+$" //整数 "^\d+(\.\d+)?$" //非负浮点数(正浮点数 + 0) "^(([0-9]+\.[0-9]*[1-9][0-9]*... 阅读全文
posted @ 2006-09-24 16:34 -> 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 我们先来看看古老的TC2中stdlib.h文件的内容,如下: TC2下的stdlib.hCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1/**//* stdlib.h 2 3 Definitions for commo... 阅读全文
posted @ 2006-09-24 13:05 -> 阅读(1490) 评论(0) 推荐(0) 编辑