Click here to Skip to main content
15,886,963 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Static vs Dynamic vs Shared DLL, and what about lib Pin
CPallini16-Jul-11 0:30
mveCPallini16-Jul-11 0:30 
AnswerRe: Static vs Dynamic vs Shared DLL, and what about lib Pin
Rolf Kristensen27-Jul-11 12:29
Rolf Kristensen27-Jul-11 12:29 
QuestionStuck with 'Loudness Equalization' Pin
Malli_S15-Jul-11 3:00
Malli_S15-Jul-11 3:00 
AnswerRe: Stuck with 'Loudness Equalization' Pin
Richard MacCutchan15-Jul-11 3:28
mveRichard MacCutchan15-Jul-11 3:28 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Malli_S15-Jul-11 3:35
Malli_S15-Jul-11 3:35 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Richard MacCutchan15-Jul-11 4:36
mveRichard MacCutchan15-Jul-11 4:36 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Malli_S15-Jul-11 4:45
Malli_S15-Jul-11 4:45 
AnswerRe: Stuck with 'Loudness Equalization' Pin
Rajesh R Subramanian15-Jul-11 5:29
professionalRajesh R Subramanian15-Jul-11 5:29 
Malli_S wrote:
error C2660: 'CreateAudioMediaType' : function does not take 2 arguments

The doc is here[^], and the API takes 3 arguments. The last one is a BOOL, and you're passing the address of pAMTOut, which doesn't look cool.


Malli_S wrote:
error LNK2019: unresolved external symbol _CreateAudioMediaType@12 referenced in function "void __cdecl useAPO(void)" (?useAPO@@YAXXZ)

The doc (again) says that you need to link to streambase.lib. If you aren't doing that, you should either change your project settings to link to it, or do it from your code:
#pragma comment(lib, "streambase.lib")

"Real men drive manual transmission" - Rajesh.

GeneralRe: Stuck with 'Loudness Equalization' Pin
Malli_S15-Jul-11 20:26
Malli_S15-Jul-11 20:26 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Rajesh R Subramanian16-Jul-11 3:41
professionalRajesh R Subramanian16-Jul-11 3:41 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Mark Salsbery15-Jul-11 5:54
Mark Salsbery15-Jul-11 5:54 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Malli_S15-Jul-11 20:27
Malli_S15-Jul-11 20:27 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Richard MacCutchan15-Jul-11 7:12
mveRichard MacCutchan15-Jul-11 7:12 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Malli_S15-Jul-11 20:29
Malli_S15-Jul-11 20:29 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Richard MacCutchan15-Jul-11 22:32
mveRichard MacCutchan15-Jul-11 22:32 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Malli_S16-Jul-11 17:27
Malli_S16-Jul-11 17:27 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Richard MacCutchan16-Jul-11 21:50
mveRichard MacCutchan16-Jul-11 21:50 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Malli_S17-Jul-11 1:14
Malli_S17-Jul-11 1:14 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Richard MacCutchan17-Jul-11 7:18
mveRichard MacCutchan17-Jul-11 7:18 
GeneralRe: Stuck with 'Loudness Equalization' Pin
Malli_S18-Jul-11 0:16
Malli_S18-Jul-11 0:16 
QuestionCrash in multiple threading with shared resource Pin
includeh1014-Jul-11 9:30
includeh1014-Jul-11 9:30 
AnswerRe: Crash in multiple threading with shared resource Pin
Mark Salsbery14-Jul-11 11:08
Mark Salsbery14-Jul-11 11:08 
AnswerRe: Crash in multiple threading with shared resource Pin
«_Superman_»14-Jul-11 15:44
professional«_Superman_»14-Jul-11 15:44 
AnswerRe: Crash in multiple threading with shared resource Pin
Eugen Podsypalnikov15-Jul-11 1:33
Eugen Podsypalnikov15-Jul-11 1:33 
AnswerRe: Crash in multiple threading with shared resource Pin
ThatsAlok15-Jul-11 1:46
ThatsAlok15-Jul-11 1:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.