这个ReggisterServiceProcess是用的KERNEL32.DLL里面的API,所以头文件里是找不到的、、void Hide_proc()//隐藏进程,限于win98
{
    HINSTANCE hDllInst = LoadLibrary("KERNEL32.DLL"); 
    if(hDllInst) 
    {        
        typedef DWORD (WINAPI *MYFUNC)(DWORD,DWORD); 
    
        MYFUNC RegisterServiceProcessAlias = NULL;         RegisterServiceProcessAlias = (MYFUNC)GetProcAddress(hDllInst, "RegisterServiceProcess"); 
    
        if(RegisterServiceProcessAlias) 
        {    
            RegisterServiceProcessAlias(GetCurrentProcessId(),1); 
        } 
    FreeLibrary(hDllInst); 
    }
}