我正在用VC写一个ASP能够调用的COM组件,出现以下问题,请高手指教:
interface IUser : IDispatch
{
//Standard Server Side Component Methods
HRESULT OnStartPage([in] IUnknown* piUnk);
HRESULT OnEndPage();
[id(1), helpstring("method GetAllUser")] GetAllUser([out, retval] _Recordset ** ppRecordset);
};
编译时出现以下错误提示:
error MIDL2025 : syntax error : expecting a type specification near "GetAllUser"
error MIDL2026 : cannot recover from earlier syntax errors; aborting compilation