XQuartz: Fix incorrect typedefs with XPLUGIN_VERSION < 4

Ok, this time for sure... how many brown bags can I fit over my face?

Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
This commit is contained in:
Jeremy Huddleston 2011-04-29 11:06:18 -07:00
parent 29d471663e
commit 0fc7ec6dd5

View File

@ -35,9 +35,9 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <Xplugin.h>
#if XPLUGIN_VERSION < 4
typedef xp_frame_attr int;
typedef xp_frame_class int;
typedef xp_frame_rect int;
typedef int xp_frame_attr;
typedef int xp_frame_class;
typedef int xp_frame_rect;
#endif
typedef int (*DisableUpdateProc)(void);