link ffmpeg library 如果出現 Error LNK2019 的時候
請去 .h 檔中找到該 function 並用 extern "C" { } 包起來
目前分類:C/C++ (33)
- Oct 05 Fri 2012 13:33
[C\C++] Link ffmpeg Library Error LNK2019
- Oct 01 Mon 2012 14:59
[C/C++] 獲得GetLastError()的文字訊息
LPVOID lpMsgBuf;
- Apr 10 Tue 2012 19:15
[C/C++] CGI send Specifying Status Code
例:
static void send_r_unauthorized()
- Feb 04 Sat 2012 11:29
[C/C++] Unix Signal Handle
註冊 signal 的 handler function ---> signal(SIGALRM, helloHandler);
2秒後發送一次 SIGALRM signal ---> alarm(2);
- Feb 03 Fri 2012 11:08
[C/C++] Define Interface by Using Callback Function
利用 struct 定義一個 interface 出來
之後讓不同的實體各自去實做
- Jan 03 Tue 2012 08:37
[C/C++] Socket Programming
- Dec 22 Thu 2011 20:41
[C/C++] Critical Section
最近在 Debug 一個程式
在 XP 上跑起來運作速度正常
在 XP 上跑起來運作速度正常
- Dec 11 Sun 2011 16:42
[MFC] Debug 好用 Macros
剛剛無意間查到的資料
MFC 中可以用 TRACE 和 ASSERT 來 Debug
- Dec 11 Sun 2011 16:11
[C/C++] Visual Studio 的 Debug vs Release
最近遇到一個怪問題
就是程式 Debug mode 跟 Release mode 的執行結果居然不同???
就是程式 Debug mode 跟 Release mode 的執行結果居然不同???
- Oct 21 Fri 2011 10:48
[C/C++] enum 轉成 string
The stringify() macro can be used to turn any text in your code into a string, but only the exact text between the parentheses. There are no variable dereferencing or macro substitutions or any other sort of thing done.
- Oct 21 Fri 2011 10:45
[C/C++]延遲效果
除了sleep之外的延遲寫法
- Aug 27 Sat 2011 15:05
[C/C++] BYTE、WORD、DWORD
- Aug 26 Fri 2011 21:08
[C/C++] Pointer 觀念
在ptt上的題目.
how many bytes will be allocated ? (Assume one pointer: 4 bytes)