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

C / C++ / MFC

 
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 
AnswerRe: Need to detect the properties of any object on an application window. Pin
Chris Losinger14-Jul-11 2:44
professionalChris Losinger14-Jul-11 2:44 
GeneralRe: Need to detect the properties of any object on an application window. Pin
kartikdasani14-Jul-11 2:57
kartikdasani14-Jul-11 2:57 
GeneralRe: Need to detect the properties of any object on an application window. Pin
Chris Losinger14-Jul-11 3:26
professionalChris Losinger14-Jul-11 3:26 
AnswerRe: Need to detect the properties of any object on an application window. Pin
«_Superman_»14-Jul-11 6:55
professional«_Superman_»14-Jul-11 6:55 
AnswerRe: Need to detect the properties of any object on an application window. Pin
Code-o-mat14-Jul-11 22:46
Code-o-mat14-Jul-11 22:46 
AnswerRe: Need to detect the properties of any object on an application window. Pin
Eugen Podsypalnikov15-Jul-11 1:59
Eugen Podsypalnikov15-Jul-11 1:59 
QuestionHow to make modeless dialog actrive Pin
manju 314-Jul-11 1:32
manju 314-Jul-11 1:32 
AnswerRe: How to make modeless dialog actrive Pin
Richard MacCutchan14-Jul-11 1:55
mveRichard MacCutchan14-Jul-11 1:55 
AnswerRe: How to make modeless dialog actrive Pin
Albert Holguin14-Jul-11 4:01
professionalAlbert Holguin14-Jul-11 4:01 
AnswerRe: How to make modeless dialog actrive Pin
«_Superman_»14-Jul-11 6:57
professional«_Superman_»14-Jul-11 6:57 

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.