Commit 94fe6693 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

mshtml: Add a dummy member to nsMargin as empty structs aren't valid in C89.

parent 9b11494d
...@@ -1404,7 +1404,7 @@ interface nsIWebNavigation : nsISupports ...@@ -1404,7 +1404,7 @@ interface nsIWebNavigation : nsISupports
] ]
interface nsIPrintSettings : nsISupports interface nsIPrintSettings : nsISupports
{ {
typedef struct {} nsMargin; typedef struct { char dummy; } nsMargin;
nsresult SetPrintOptions(PRInt32 aType, PRBool aTurnOnOff); nsresult SetPrintOptions(PRInt32 aType, PRBool aTurnOnOff);
nsresult GetPrintOptions(PRInt32 aType, PRBool *_retval); nsresult GetPrintOptions(PRInt32 aType, PRBool *_retval);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment