Click here to Skip to main content
15,891,905 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
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 
Malli_S wrote:
The above code gives compiler error for CreateAudioMediaType() function. The error is

 

error C2660: 'CreateAudioMediaType' : function does not take 2 arguments

Well that's quite clear, your function call does not match the function prototype in the package header file. As far as I am able to ascertain the correct definition is as described in this page[^] in MSDN.

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

Again this message is quite clear; the function you are attempting to call exists in an external library that has not been included in your project. Unfortunately the documentation for the CreateAudioMediaType() function does not indicate which library you need to include in your project. You could try checking the header file to see if it gives any information there. Unfortunately these functions appear to be part of the Windows Driver Kit, and I do not have a copy so am unable to offer any further suggestions.

You may like to recheck the documentation you are working from, or try posting on one of the Microsoft technical forums.
The best things in life are not things.

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 
QuestionNeed to detect the properties of any object on an application window. Pin
kartikdasani14-Jul-11 2:11
kartikdasani14-Jul-11 2:11 

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.