diff -r 000000000000 -r dd21522fd290 webengine/osswebengine/WebKit/Plugins/WebNetscapeDeprecatedFunctions.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/webengine/osswebengine/WebKit/Plugins/WebNetscapeDeprecatedFunctions.c Mon Mar 30 12:54:55 2009 +0300 @@ -0,0 +1,34 @@ +/* + * WebNetscapeDeprecatedFunctions.c + * WebKit + * + * Created by Tim Omernick on 3/21/06. + * Copyright 2006 Apple Computer, Inc. All rights reserved. + * + */ + +#include "WebNetscapeDeprecatedFunctions.h" + +#ifndef __LP64__ + +OSErr WebGetDiskFragment(const FSSpec *fileSpec, UInt32 offset, UInt32 length, ConstStr63Param fragName, CFragLoadOptions options, CFragConnectionID *connID, Ptr *mainAddr, Str255 errMessage) +{ + return GetDiskFragment(fileSpec, offset, length, fragName, options, connID, mainAddr, errMessage); +} + +OSErr WebCloseConnection(CFragConnectionID *connID) +{ + return CloseConnection(connID); +} + +SInt16 WebLMGetCurApRefNum(void) +{ + return LMGetCurApRefNum(); +} + +extern void WebLMSetCurApRefNum(SInt16 value) +{ + LMSetCurApRefNum(value); +} + +#endif /* !__LP64__ */