我这里只知道一个,希望大家一道补充!也希望顶一下
现在正在找其他函数中.....
关机画面:
函数编号60(0x3C);shell32.dll
  typedef int (CALLBACK *SHUTDOWNDLG) (int); 
     CString s; 
     
     HINSTANCE hInst = LoadLibrary("shell32"); 
     SHUTDOWNDLG SHShutDownDialog; 
     if(hInst != 0) 
     { 
     SHShutDownDialog = (SHUTDOWNDLG)GetProcAddress(hInst, (LPSTR)0x3c); 
     (*SHShutDownDialog)(0); 
     FreeLibrary(hInst);
    }