1 uses tlhelp32;  tlhelp32这个单元有些什么??具体他有什么作用?
2 var
  pe:PROCESSENTRY32;
  me:MODULEENTRY32;
  PROCESSENTRY32,MODULEENTRY32,代表什么意思呢?具体怎么定义啊!
3 TStartupInfo TOSVersionInfo 有是什么东东呢?具体怎么定义的啊!
 能不能请大哥门讲详细一点哦!对这些东西,我太陌生了!

解决方案 »

  1.   

    ?
    按下ctrl键,点一下,看看他们的定义和代码,不就知道了
      

  2.   

    按风焱老大说的做没错的。。
    不过你看的也太深了点,如果对api了解不多的话
    tlhelp32,PROCESSENTRY32,MODULEENTRY32都是定义在tool help library库里,具体的,我也不懂,第三个问题里的东东也不了解。
      

  3.   

    这些定义都是参照API函数的数据结构定义的。API函数其实是调用Microsoft等的DLL文件中的函数。
      

  4.   

    1.这个单元包含了一些给系统创建快照的函数,例如获得当前进程列表的,线程列表等
    2.PROCESSENTRY32,MODULEENTRY32是记录类型,呵呵
    3.TOSVersionInfo 用来得到操作系统版本信息的记录. TStartupInfo:
    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) processes, this information affects the first window created by the CreateWindow function and shown by the ShowWindow function. For console processes, this information affects the console window if a new console is created for the process. A process can use the GetStartupInfo function to retrieve the STARTUPINFO structure specified when the process was created
      

  5.   

    Eastunfail(恶鱼杀手)还是 大哥你厉害啊!