我正在使用Delphi函数
StringCodePage
我在由COM函数返回的字符串上调用它(Acrobat Annotation getContents-参见我的其他文章),它返回0。
什么是0?安西吗
最佳答案
代码页0是CP_ACP,当前Windows ANSI代码页。
从Windows.pas:
{$EXTERNALSYM CP_ACP}
CP_ACP = 0; { default to ANSI code page }
从MSDN:关于delphi - 什么是代码页0?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/529502/