GraphEdit can load a filter graph created by an external process. With this feature, you can see exactly what filter graph your application builds, with only a minimal amount of additional code in your application.The application must
枚舉註冊表鍵名與索引值的一個函數:// QueryKey - Enumerates the subkeys of key, and the associated // values, then copies the information about the keys and values // into a pair of edit controls and list boxes. // hDlg - Dialog box that contains the edit contro
聲明:歡迎任何人和組織轉載本blog中文章,但必須標記文章原始連結和作者資訊。本文連結:http://blog.csdn.net/li_007/archive/2009/03/28/4032276.aspx開拓進取的小烏龜------->CSDN點滴點點滴滴Blog 緊接著上一篇blog,貼一個我自己平時用的載入AVM2的swf的類,同大家分享。//// CLoadMedia.as//// you can load external swf and pictures used this
簡單的虛擬函數執行個體,以及虛擬函數列表。// mfcClsVtable.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include <iostream>using std::cin;using std::cout;using std::endl;class A{public: virtual void mvFunA(void){};
這段時間在複習C++基礎知識,會不定期寫一些重要的總結,算是這段時間學習過程。1、關於const與pointer A、指向const的pointer(指標常量—是指對於指標來說,指向的是常量,實際是不是常量,並不一定) eg:int age = 23; int num = 100; const int * pAge = &age; *pAge = 50; // 非法的,不能使用 age = 50; //
在考試或者做題的時候,經常遇到這類問題,出題的老師就是愛在這點上面鑽牛腳尖,那就是自增自減操作的組合運算,我個人認為,考這樣的題,沒多大意思,因為各個編譯器不同,出來的結果也不同,而且這樣有一種誤導,而失去了語言學習的本質,但是我們還是得面對……悲哀啊。下面我用彙編來分析一下這個例子:#include "stdio.h"int main(){ int i=0,n = 0; n = (++i)+(++i)+(++i); printf(" n = %d/n",n); printf(" i =