gpt4 book ai didi

C++ G711编码解码器错误

转载 作者:行者123 更新时间:2023-11-28 05:53:36 25 4
gpt4 key购买 nike

我在 C++ ( Visual Studio 2013 ) 中有以下代码来在头文件中声明函数原型(prototype):

extern "C" __cdecl
short int
G_Init(
void *Ptr,
char Encoding);

编译器返回以下错误:

error C2062: type 'short' unexpected

我做错了什么?

最佳答案

MSDN says : “将 __cdecl 修饰符放在变量或函数名称之前。”

也就是说,extern "C"short int __cdecl G_Init,而不是extern "C"__cdecl short int
G_Init
.

关于C++ G711编码解码器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34680587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com