差異處

這裏顯示兩個版本的差異處。

連向這個比對檢視

Both sides previous revision 前次修改
下次修改
前次修改
cpp:cpp [2016/06/30 22:33]
127.0.0.1 外部編輯
cpp:cpp [2023/06/25 09:48] (目前版本)
行 1: 行 1:
 ====== C++ ====== ====== C++ ======
 ===== Introduction ===== ===== Introduction =====
-對於C++,我所知道的東西非常有限,主因之一就是沒使用過C++去開發過有規模的程式。開始工作後才接觸到平台依較深C++ Programming,有空閒時也會釐清一些模糊的概念並寫成教學。希望可以幫助到大家,因為我會遇到的大家應該也會遇到。 +分享C技術問題解決方案。 
-==== Resource ====+===== Sub-Category ===== 
 +    * [[CPP:​DLL|Dynamic-link Library]] 
 +    * [[CPP:​WINAPI|WINAPI]] 
 +    * [[CPP:​Mixed|Miscellaneous]] 
 +===== Resource ​===== 
   * [[http://​www.arm9.net/​download-linux-examples.asp|友善之臂 - linux examples]]   * [[http://​www.arm9.net/​download-linux-examples.asp|友善之臂 - linux examples]]
 +  * [[http://​support.microsoft.com/​kb/​198038/​zh-tw|實用的封裝與部署工具]]
 +  * [[http://​www.microsoft.com/​taiwan/​technet/​columns/​profwin/​34-sysinternals.mspx|Windows Sysinternals 及實用工具]]
 +  * [[http://​blog.chinaunix.net/​uid-24512513-id-3183457.html|Linux Kernel開發環境]]
 +  * [[http://​pci-ids.ucw.cz/​read/​PC/​8086|PCI device id list]]
 +  * [[http://​www.osronline.com/​showthread.cfm?​link=205314|WDM中使用KeInitializeSpinLock在x86的link重複問題]]
 +  * [[http://​daydreamer.idv.tw/​rewrite.php/​read-18.html|檢查程式記憶體的小工具-valgrind]]
 +  * [[https://​stephenyin.github.io/​2016/​12/​19/​valgrind-locate-codeline/​|透過valgrind定位memory leak的位置]]
 +  * [[http://​blog.gclxry.com/​%E4%BD%BF%E7%94%A8vmmap-exe%E5%88%86%E6%9E%90%E8%BF%9B%E7%A8%8B%E5%86%85%E5%AD%98%E4%BD%BF%E7%94%A8/​|VMMap介紹]]
 +  * [[http://​stackoverflow.com/​questions/​19617955/​c-run-program-as-administrator|Build .exe to run as admin]]
 +  * [[https://​en.wikibooks.org/​wiki/​X86_Disassembly/​Windows_Executable_Files|Windows_Executable_Files]] [[https://​upload.wikimedia.org/​wikipedia/​commons/​7/​70/​Portable_Executable_32_bit_Structure_in_SVG.svg|format]]
 +  * [[http://​www.nirsoft.net/​utils/​blue_screen_view.html#​DownloadLinks|Blue Screen Viewer]]
 +  * [[http://​xiamachao.blog.51cto.com/​10580956/​1685376|Intel CPU屏蔽PCIE错误的两种方法]]
 +  * [[https://​github.com/​Microsoft/​Windows-driver-samples/​blob/​master/​tools/​sdv/​samples/​DV-FailDriver-WDM/​defect_toastmon.c|實作WDM PNP的參考範例]]
 +  * [[http://​pollos-blog.blogspot.tw/​2007/​09/​windows-driver-programming7.html|Relationship between IRP and IO_STACK_LOCATION]]
 +  * [[http://​debut.cis.nctu.edu.tw/​~ching/​Course/​Device_Driver_Development_Course/​pages/​01_Kernal_Mode_Driver_Framework/​Device_Object%20_And_Driver.html|Device and Driver 之間的關係]]
 +  * [[https://​docs.microsoft.com/​en-us/​windows-hardware/​drivers/​ifs/​applying-security-descriptors-on-the-device-object|Applying Security Descriptors on the Device Object]]
 +===== Compile Issues =====
 +  * [[http://​stackoverflow.com/​questions/​9182763/​implicit-function-declarations-in-c|implicit-function-declarations error]]