Module: wine Branch: master Commit: 9f333b71b67dd6e79397d18c2c75adab33a7c63e URL: http://source.winehq.org/git/wine.git/?a=commit;h=9f333b71b67dd6e79397d18c2c...
Author: Jacek Caban jacek@codeweavers.com Date: Thu Jul 7 15:09:27 2011 +0200
mshtml: Mark some functions as cdecl.
---
dlls/mshtml/nsiface.idl | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/dlls/mshtml/nsiface.idl b/dlls/mshtml/nsiface.idl index 8c11032..502fb30 100644 --- a/dlls/mshtml/nsiface.idl +++ b/dlls/mshtml/nsiface.idl @@ -3013,13 +3013,13 @@ interface nsIParser : nsISupports PRInt32 aContextNamespace, PRBool aQuirks); nsresult BuildModel(); nsresult CancelParsingEvents(); - void Reset(); - PRBool CanInterrupt(); - PRBool IsInsertionPointDefined(); - void BeginEvaluatingParserInsertedScript(); - void EndEvaluatingParserInsertedScript(); - void MarkAsNotScriptCreated(); - PRBool IsScriptCreated(); + void cdecl Reset(); + PRBool cdecl CanInterrupt(); + PRBool cdecl IsInsertionPointDefined(); + void cdecl BeginEvaluatingParserInsertedScript(); + void cdecl EndEvaluatingParserInsertedScript(); + void cdecl MarkAsNotScriptCreated(); + PRBool cdecl IsScriptCreated(); }
[