From 07d6c1c19f1ca78bf3c60183447dee9f80a40bbd Mon Sep 17 00:00:00 2001 From: Eric Mullins Date: Mon, 13 Jul 2009 22:26:10 -0600 Subject: [PATCH] Removed dependency on jfwapi.h Allows anyone to compile a jaws compatible binary. --- winboard/jaws.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/winboard/jaws.c b/winboard/jaws.c index c62f247..4502178 100644 --- a/winboard/jaws.c +++ b/winboard/jaws.c @@ -147,8 +147,8 @@ char* SquareToNum(y) // from winboard.c: all new routines - -#include "jfwapi.h" +#define JFWAPI __declspec(dllimport) +JFWAPI BOOL WINAPI JFWSayString (LPCTSTR lpszStrinToSpeak, BOOL bInterrupt); typedef JFWAPI BOOL (WINAPI *PSAYSTRING)(LPCTSTR lpszStrinToSpeak, BOOL bInterrupt); -- 1.7.0.4