我正在使用的函数包含三个参数,其中一个参数需要一个标志 (fCreationDisposition):
function MpqOpenArchiveForUpdate(lpFileName: LPCSTR; fCreationDisposition, dwHashTableSize: DWord): THandle; stdcall; external 'lmpqapi.dll';
该文档指出有五个可用的标志。但是,当我使用任何标志时,Delphi 告诉我它是“未声明的标识符”。
为了能够在没有 Delphi 告诉我它是“未声明的标识符”的情况下访问标志,我必须添加什么额外的东西吗?
注意:在uses
我调用该功能的部分下:
function MpqOpenArchiveForUpdate(lpFileName: LPCSTR; fCreationDisposition, dwHashTableSize: DWord): THandle; stdcall; external 'lmpqapi.dll';