資源簡介
包括Intel Visual Fortran應用程序開發書及書中源代碼!

代碼片段和文件信息
#include?
//聲明窗口函數原型
LRESULT?CALLBACK?WndProc(HWNDUINTWPARAMLPARAM);
//主函數
int?WINAPI?WinMain(HINSTANCE?hInstance
???????????????????HINSTANCE?PreInstance
???????????????????LPSTR?lpCmdLine
???????????????????int?nCmdShow)
{
??HWND?hwnd;
??MSG??msg;
??TCHAR?lpszClassName[3]?;
??TCHAR?szWindowstitle[3]?;
??WNDCLASS?wc;
??wc.style?=?0?;
??wc.lpfnWndProc?=?WndProc?;
??wc.cbClsExtra?=?0?;
??wc.cbWndExtra?=?0?;
??wc.hInstance?=?hInstance?;
??wc.hIcon?=?LoadIcon(?NULL??IDI_APPLICATION?)?;
??wc.hCursor?=?LoadCursor(?NULL??IDC_ARROW?)?;
??wc.hbrBackground?=?(HBRUSH)GetStockobject(WHITE_BRUSH)?;
??wc.lpszMenuName?=?NULL?;
??wc.lpszClassName?=?lpszClassName?;
??RegisterClass(&wc);
??hwnd?=?CreateWindow(lpszClassName
??????????????????????szWindowstitle
??????????????????????WS_OVERLAPPEDWINDOW
??????????????????????12050800600
??????????????????????NULL
??????????????????????NULL
??????????????????????hInstance
??????????????????????NULL);
??ShowWindow(hwndnCmdShow);
??UpdateWindow(hwnd);
??while(GetMessage(&msgNULL00))
??{
????TranslateMessage(&msg);
????DispatchMessage(&msg);
??}
??return?(int)?msg.wParam;
}
//處理消息的窗口函數
LRESULT?CALLBACK?WndProc(HWND?hwnd
?????????????????????????UINT?message
?????????????????????????WPARAM?wParam
?????????????????????????LPARAM?lParam)
{
??switch(message)
??{
??case?WM_LBUTTONDOWN:
????{
??????MessageBeep(0);
????}
??case?WM_DESTROY:
????PostQuitMessage(0);
????break;
??default:
????return?DefWindowProc(hwndmessagewParamlParam);
??}
??return?0;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
????......R???????137??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_1.F90
????......R???????234??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_10.F90
????......R??????1146??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_11.F90
????......R???????310??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_12.F90
????......R???????405??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_13.F90
????......R??????1786??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_14\gridShape.F90
????......R???????742??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_14\Main.F90
????......R??????1386??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_14\threeGraphs.F90
????......R??????1061??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_15\Main.F90
????......R??????1801??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_15\PlotMod.F90
????......R???????542??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_2.F90
????......R???????622??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_3.F90
????......R???????544??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_4.F90
????......R???????255??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_5.F90
????......R???????620??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_6.F90
????......R???????378??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_7.F90
????......R??????1373??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_8.F90
????......R???????461??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter3\Ex_9.F90
????......R???????926??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter4\Ex_1.F90
????......R???????237??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter4\Ex_10.F90
????......R???????347??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter4\Ex_11.F90
????......R???????973??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter4\Ex_12\InitialSettings.F90
????......R???????678??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter4\Ex_12\Main.F90
????......R???????587??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter4\Ex_12\NewPlotMod.F90
????......R???????775??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter4\Ex_13.F90
????......R???????560??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter4\Ex_14.F90
????......R???????268??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter4\Ex_2.F90
????......R???????408??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter4\Ex_3.F90
????......R???????406??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter4\Ex_4.F90
????......R???????461??2007-02-10?00:00??IntelVisualFortran應用程序開發\Code\Chapter4\Ex_5.F90
............此處省略108個文件信息
- 上一篇:Kettle教程詳細解析各個控件
- 下一篇:同桌的你音樂動畫MV.rar
評論
共有 條評論