From 44eee344d5d62e7412ef797968ce51d9c75314f7 Mon Sep 17 00:00:00 2001 From: "pinkerton%netscape.com" Date: Tue, 11 May 1999 21:31:32 +0000 Subject: [PATCH] some of the timer stuff in here (which we don't use) doesn't like the WWDC Carbon Headers. #ifdef'd out for TARGET_CARBON. --- lib/mac/MoreFiles/MoreFilesSearch.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/mac/MoreFiles/MoreFilesSearch.c b/lib/mac/MoreFiles/MoreFilesSearch.c index 0d4f83af32cb..8d0d3f24c50a 100644 --- a/lib/mac/MoreFiles/MoreFilesSearch.c +++ b/lib/mac/MoreFiles/MoreFilesSearch.c @@ -707,7 +707,10 @@ static long GetDirModDate(short vRefNum, } /*****************************************************************************/ - +#if !TARGET_CARBON +/* NSCP - pinkerton + * some of the timer stuff is mismatched for carbon. We don't use it anyway. + */ pascal OSErr IndexedSearch(CSParamPtr pb, long dirID) { @@ -982,6 +985,7 @@ pascal OSErr IndexedSearch(CSParamPtr pb, return ( result ); } +#endif /*****************************************************************************/