You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(447) |
Nov
(163) |
Dec
(57) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2005 |
Jan
(172) |
Feb
|
Mar
(123) |
Apr
(64) |
May
(1) |
Jun
(278) |
Jul
(89) |
Aug
(97) |
Sep
(62) |
Oct
(53) |
Nov
(119) |
Dec
(60) |
| 2006 |
Jan
(76) |
Feb
(1094) |
Mar
(363) |
Apr
(163) |
May
(57) |
Jun
(43) |
Jul
(39) |
Aug
(15) |
Sep
(33) |
Oct
(62) |
Nov
(8) |
Dec
|
| 2007 |
Jan
(9) |
Feb
(34) |
Mar
(2) |
Apr
(14) |
May
(8) |
Jun
(40) |
Jul
(21) |
Aug
(1) |
Sep
(20) |
Oct
(15) |
Nov
(26) |
Dec
|
| 2008 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
(1) |
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(32) |
Jun
|
Jul
|
Aug
(3) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(7) |
Dec
|
| 2012 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Andre R. <and...@us...> - 2004-10-23 22:19:00
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv675/Frontier/Common/source Modified Files: fileops.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: fileops.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/fileops.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** fileops.c 17 Oct 2004 12:34:40 -0000 1.2 --- fileops.c 23 Oct 2004 22:18:51 -0000 1.3 *************** *** 24,45 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <Files.h> ! #include <Folders.h> ! #include <Gestalt.h> ! #include <Script.h> ! #include <StandardFile.h> ! #include <standard.h> ! #include <Math64.h> /*6.1b15 AR: for langgetextendedvolumeinfo*/ ! #endif #ifdef WIN95VERSION - #include "standard.h" #include "winregistry.h" - #undef abs - #include <shlobj.h> #endif - #include "filealias.h" #include "cursor.h" --- 24,34 ---- ******************************************************************************/ ! #include "frontier.h" ! #include "standard.h" #ifdef WIN95VERSION #include "winregistry.h" #endif #include "filealias.h" #include "cursor.h" *************** *** 58,92 **** #include "langinternal.h" /*for langbackgroundtask*/ - #ifdef MACVERSION - #ifdef flcomponent - - #include "SetUpA5.h" ! #endif ! #endif ! ! #define hasOpenDeny(volParms) (((volParms).vMAttrib & (1L << bHasOpenDeny)) != 0) ! ! enum { /*permissions used by MoreFile 1.1 code*/ ! dmNone = 0x0000, ! dmNoneDenyRd = 0x0010, ! dmNoneDenyWr = 0x0020, ! dmNoneDenyRdWr = 0x0030, ! dmRd = 0x0001, /* Single writer, multiple readers; the readers */ ! dmRdDenyRd = 0x0011, ! dmRdDenyWr = 0x0021, /* Browsing - equivalent to fsRdPerm */ ! dmRdDenyRdWr = 0x0031, ! dmWr = 0x0002, ! dmWrDenyRd = 0x0012, ! dmWrDenyWr = 0x0022, ! dmWrDenyRdWr = 0x0032, ! dmRdWr = 0x0003, /* Shared access - equivalent to fsRdWrShPerm */ ! dmRdWrDenyRd = 0x0013, ! dmRdWrDenyWr = 0x0023, /* Single writer, multiple readers; the writer */ ! dmRdWrDenyRdWr = 0x0033 /* Exclusive access - equivalent to fsRdWrPerm */ ! }; --- 47,87 ---- #include "langinternal.h" /*for langbackgroundtask*/ #ifdef MACVERSION ! #if TARGET_API_MAC_CARBON ! #include "MoreFilesX.h" ! #else ! pascal OSErr XGetVInfo(short volReference, StringPtr volName, short *vRefNum, ! UInt64 *freeBytes, UInt64 *totalBytes); ! #endif ! #ifdef flcomponent ! #include "SetUpA5.h" ! #endif + #define hasOpenDeny(volParms) (((volParms).vMAttrib & (1L << bHasOpenDeny)) != 0) + + #ifndef __MOREFILESEXTRAS__ + enum { /*permissions used by MoreFile 1.1 code*/ + dmNone = 0x0000, + dmNoneDenyRd = 0x0010, + dmNoneDenyWr = 0x0020, + dmNoneDenyRdWr = 0x0030, + dmRd = 0x0001, /* Single writer, multiple readers; the readers */ + dmRdDenyRd = 0x0011, + dmRdDenyWr = 0x0021, /* Browsing - equivalent to fsRdPerm */ + dmRdDenyRdWr = 0x0031, + dmWr = 0x0002, + dmWrDenyRd = 0x0012, + dmWrDenyWr = 0x0022, + dmWrDenyRdWr = 0x0032, + dmRdWr = 0x0003, /* Shared access - equivalent to fsRdWrShPerm */ + dmRdWrDenyRd = 0x0013, + dmRdWrDenyWr = 0x0023, /* Single writer, multiple readers; the writer */ + dmRdWrDenyRdWr = 0x0033 /* Exclusive access - equivalent to fsRdWrPerm */ + }; + #endif + + #endif *************** *** 134,147 **** - #ifdef MACVERSION - //copied from MoreFilesExtras.h - extern pascal OSErr XGetVInfo(short volReference, - StringPtr volName, - short *vRefNum, - UnsignedWide *freeBytes, - UnsignedWide *totalBytes); - - #endif - typedef struct tyfileinfo tyvolinfo; --- 129,132 ---- *************** *** 2108,2113 **** bigstring volname; #ifdef MACVERSION ! short vrefnum; ! UnsignedWide uwtotalbytes, uwfreebytes; #endif --- 2093,2100 ---- bigstring volname; #ifdef MACVERSION ! UInt64 ui64totalbytes, ui64freebytes; ! #if !TARGET_API_MAC_CARBON ! short vrefnum; ! #endif #endif *************** *** 2137,2153 **** #ifdef MACVERSION ! errnum = XGetVInfo (fs->vRefNum, nil, &vrefnum, &uwfreebytes, &uwtotalbytes); ! ! if (errnum != noErr) { volumeinfoerror (errnum); - return (false); } ! *totalbytes = (double) UnsignedWideToUInt64 (uwtotalbytes); ! ! *freebytes = (double) UnsignedWideToUInt64 (uwfreebytes); ! #endif --- 2124,2141 ---- #ifdef MACVERSION ! #if TARGET_API_MAC_CARBON ! errnum = FSGetVInfo (fs->vRefNum, nil, &ui64totalbytes, &ui64freebytes); ! #else ! errnum = XGetVInfo (fs->vRefNum, nil, &vrefnum, &ui64totalbytes, &ui64freebytes); ! #endif + if (errnum != noErr) { volumeinfoerror (errnum); return (false); } ! *totalbytes = (double) ui64totalbytes; ! *freebytes = (double) ui64freebytes; ! #endif *************** *** 3373,3406 **** #ifdef MACVERSION - #if TARGET_RT_MAC_CFM - - static pascal void iocompletion (ParmBlkPtr pb) { - - DisposePtr ((Ptr) pb); - } /*iocompletion*/ - - #if !TARGET_API_MAC_CARBON - static RoutineDescriptor iocompletionDesc = BUILD_ROUTINE_DESCRIPTOR (uppIOCompletionProcInfo, iocompletion); - - #define iocompletionUPP (&iocompletionDesc) - #else - //IOCompletionUPP iocompletionDesc = nil; - //#define iocompletionUPP(iocompletionDesc) - #endif - - - #else - - static pascal void iocompletion (ParmBlkPtr pb : __A0) { - - DisposePtr ((Ptr) pb); - } /*iocompletion*/ - - #define iocompletionUPP ((Register68kProcPtr) iocompletion) - - #endif - - - boolean getfullfilepath (bigstring bspath) { --- 3361,3364 ---- *************** *** 3424,3428 **** return ((ec == noErr) || (ec == fnfErr)); } /*filemakespec*/ ! #endif boolean initfile (void) { --- 3382,3388 ---- return ((ec == noErr) || (ec == fnfErr)); } /*filemakespec*/ ! ! #endif /*MACVERSION*/ ! boolean initfile (void) { |
|
From: Andre R. <and...@us...> - 2004-10-23 22:18:45
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv591/Frontier/Common/source Modified Files: filemp3.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: filemp3.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/filemp3.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** filemp3.c 9 Oct 2004 07:22:59 -0000 1.1 --- filemp3.c 23 Oct 2004 22:18:35 -0000 1.2 *************** *** 245,251 **** */ ! #ifdef WIN95VERSION #include "standard.h" - #endif #include "file.h" --- 245,251 ---- */ ! ! #include "frontier.h" #include "standard.h" #include "file.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:18:31
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv515/Frontier/Common/source Modified Files: fileloop.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: fileloop.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/fileloop.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fileloop.c 9 Oct 2004 07:22:45 -0000 1.1 --- fileloop.c 23 Oct 2004 22:18:13 -0000 1.2 *************** *** 24,41 **** ******************************************************************************/ ! ! ! #ifdef MACVERSION ! #include <Files.h> /*explicity include this so we can get to it from titlebar popup menu*/ ! #include <standard.h> ! #if TARGET_API_MAC_CARBON == 1 ! #include <UnicodeConverter.h> ! #endif ! #endif ! ! #ifdef WIN95VERSION #include "standard.h" - #endif - #include "memory.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" #include "standard.h" #include "memory.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:18:10
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv415/Frontier/Common/source Modified Files: filelaunch.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: filelaunch.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/filelaunch.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** filelaunch.c 9 Oct 2004 07:22:33 -0000 1.1 --- filelaunch.c 23 Oct 2004 22:18:00 -0000 1.2 *************** *** 24,36 **** ******************************************************************************/ ! #undef SystemSevenOrLater ! #define SystemSevenOrLater 1 - #include <AppleEvents.h> - #include <Aliases.h> - #include <PPCToolbox.h> - #include <Folders.h> - #include <Gestalt.h> - #include <standard.h> #include "file.h" #include "filesystem7.h" --- 24,30 ---- ******************************************************************************/ ! #include "frontier.h" ! #include "standard.h" #include "file.h" #include "filesystem7.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:17:56
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv348/Frontier/Common/source Modified Files: filedialog.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: filedialog.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/filedialog.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** filedialog.c 9 Oct 2004 07:22:24 -0000 1.1 --- filedialog.c 23 Oct 2004 22:17:48 -0000 1.2 *************** *** 24,48 **** ******************************************************************************/ #ifdef MACVERSION - #include <Files.h> - #include <Folders.h> - #include <Gestalt.h> - #include <Script.h> - #include <StandardFile.h> - #include <standard.h> - //Code change by Timothy Paustian Sunday, June 25, 2000 10:33:54 AM - //We need - #include <Navigation.h> #include "mac.h" #endif - #ifdef WIN95VERSION - #include "standard.h" - #include <commdlg.h> - #undef abs - #include <shlobj.h> - #include <objidl.h> - #endif - #include "filealias.h" #include "cursor.h" --- 24,34 ---- ******************************************************************************/ + #include "frontier.h" + #include "standard.h" + #ifdef MACVERSION #include "mac.h" #endif #include "filealias.h" #include "cursor.h" *************** *** 62,67 **** #include "langinternal.h" /*for langbackgroundtask*/ #ifdef MACVERSION ! #include "SetUpA5.h" #define sfgetfileid 5000 --- 48,55 ---- #include "langinternal.h" /*for langbackgroundtask*/ + #ifdef MACVERSION ! ! #include "SetUpA5.h" #define sfgetfileid 5000 *************** *** 86,89 **** --- 74,79 ---- + #if !TARGET_API_MAC_CARBON + static pascal short sfputfilehook (short item, DialogPtr pdialog, tysfdata *pdata) { *************** *** 421,424 **** --- 411,415 ---- } /*knowntypesfilter*/ + #if !TARGET_RT_MAC_CFM *************** *** 453,456 **** --- 444,450 ---- #endif + + #endif /* !TARGET_API_MAC_CARBON */ + boolean sfdialog (tysfverb sfverb, bigstring bsprompt, ptrsftypelist filetypes, tyfilespec *fspec) { *************** *** 501,506 **** OSType *types = nil; Str255 bs; ! DlgHookYDUPP sfhook = nil; ! FileFilterYDUPP sffilefilter = nil; tysfdata sfdata; FSSpec *fs = &sfdata.sfreply.sfFile; --- 495,500 ---- OSType *types = nil; Str255 bs; ! //DlgHookYDUPP sfhook = nil; ! //FileFilterYDUPP sffilefilter = nil; tysfdata sfdata; FSSpec *fs = &sfdata.sfreply.sfFile; |
|
From: Andre R. <and...@us...> - 2004-10-23 22:17:41
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv323/Frontier/Common/source Modified Files: filealias.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: filealias.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/filealias.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** filealias.c 9 Oct 2004 07:22:07 -0000 1.1 --- filealias.c 23 Oct 2004 22:17:31 -0000 1.2 *************** *** 53,58 **** ******************************************************************************/ ! #include <Gestalt.h> ! #include <standard.h> #include "filealias.h" #include "error.h" --- 53,59 ---- ******************************************************************************/ ! #include "frontier.h" ! #include "standard.h" ! #include "filealias.h" #include "error.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:17:30
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32760/Frontier/Common/source Modified Files: file.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: file.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/file.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** file.c 9 Oct 2004 07:21:57 -0000 1.1 --- file.c 23 Oct 2004 22:17:19 -0000 1.2 *************** *** 24,40 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <Files.h> ! #include <Folders.h> ! #include <Gestalt.h> ! #include <Script.h> ! #include <StandardFile.h> ! #include <standard.h> ! #include "MoreFilesExtras.h" ! #endif ! ! ! #ifdef WIN95VERSION #include "standard.h" #endif --- 24,36 ---- ******************************************************************************/ ! #include "frontier.h" #include "standard.h" + + #ifdef MACVERSION + #if TARGET_API_MAC_CARBON + #include "MoreFilesX.h" + #else + #include "MoreFilesExtras.h" + #endif #endif *************** *** 427,461 **** #ifdef MACVERSION //Code change by Timothy Paustian Monday, June 19, 2000 3:15:01 PM //Changed to Opaque call for Carbon ! #if TARGET_RT_MAC_CFM ! static pascal void iocompletion (ParmBlkPtr pb) { ! ! DisposePtr ((Ptr) pb); ! } /*iocompletion*/ ! #if !TARGET_API_MAC_CARBON ! static RoutineDescriptor iocompletionDesc = BUILD_ROUTINE_DESCRIPTOR (uppIOCompletionProcInfo, iocompletion); ! ! #define iocompletionUPP (&iocompletionDesc) #else ! //looks like we need some kind of file UPP ! //do we need to create a UPP, yes we do. ! IOCompletionUPP iocompletionDesc = nil; ! #define iocompletionUPP (iocompletionDesc) #endif ! #else ! ! static pascal void iocompletion (ParmBlkPtr pb : __A0) { ! ! DisposePtr ((Ptr) pb); ! } /*iocompletion*/ ! ! #define iocompletionUPP ((Register68kProcPtr) iocompletion) - #endif //TARGET_RT_MAC_CFM #endif //MACVERSION --- 423,451 ---- #ifdef MACVERSION + //Code change by Timothy Paustian Monday, June 19, 2000 3:15:01 PM //Changed to Opaque call for Carbon ! static pascal void iocompletion (ParmBlkPtr pb) { ! DisposePtr ((Ptr) pb); ! } /*iocompletion*/ ! ! #if TARGET_RT_MAC_CFM #if !TARGET_API_MAC_CARBON ! static RoutineDescriptor iocompletionDesc = BUILD_ROUTINE_DESCRIPTOR (uppIOCompletionProcInfo, iocompletion); ! #define iocompletionUPP (&iocompletionDesc) #else ! //looks like we need some kind of file UPP ! //do we need to create a UPP, yes we do. ! IOCompletionUPP iocompletionDesc = nil; ! #define iocompletionUPP (iocompletionDesc) #endif + #endif /*TARGET_RT_MAC_CFM*/ ! #if TARGET_RT_MAC_MACHO ! static IOCompletionUPP iocompletionUPP = &iocompletion; ! #endif /*TARGET_RT_MAC_MACHO*/ #endif //MACVERSION *************** *** 493,497 **** void fileinit() { ! #if TARGET_API_MAC_CARBON == 1 if(iocompletionDesc == nil) iocompletionDesc = NewIOCompletionUPP(iocompletion); --- 483,487 ---- void fileinit() { ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM if(iocompletionDesc == nil) iocompletionDesc = NewIOCompletionUPP(iocompletion); *************** *** 501,505 **** void fileshutdown() { ! #if TARGET_API_MAC_CARBON == 1 if(iocompletionDesc != nil) DisposeIOCompletionUPP(iocompletionDesc); --- 491,495 ---- void fileshutdown() { ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM if(iocompletionDesc != nil) DisposeIOCompletionUPP(iocompletionDesc); *************** *** 526,543 **** } ! #if TARGET_API_MAC_CARBON == 1 ! { ! FSRef myRef; ! // Update the finder ! // I don't have it using the oserror function yet because I don't quite understand ! // all of the inctricacies of the oserror function. err = FSpMakeFSRef (fs,&myRef); ! // take that, rewind it back... ! FSpSetNameLocked(&fs); ! FSGetCatalogInfo (&myRef,kFSCatInfoNone,NULL,NULL,NULL,&myRef); ! if (err==noErr) err = FNNotify(&myRef, kFNDirectoryModifiedMessage, kNilOptions); ! // end updating the finder. ! } ! #endif return (true); --- 516,527 ---- } ! #if TARGET_API_MAC_CARBON ! { ! FSRef myRef; err = FSpMakeFSRef (fs,&myRef); ! if (!err) ! FSSetNameLocked(&myRef); ! } ! #endif return (true); *************** *** 576,580 **** if (FSpOpenDF (fs, fsRdWrPerm, fnum) == noErr) { /*file exists and is open*/ ! FSpSetNameLocked(&fs); return (true); } --- 560,570 ---- if (FSpOpenDF (fs, fsRdWrPerm, fnum) == noErr) { /*file exists and is open*/ ! #if TARGET_API_MAC_CARBON ! FSRef myRef; ! if (FSpMakeFSRef (fs,&myRef)) ! FSSetNameLocked(&myRef); ! #else ! FSpSetNameLocked(&fs); ! #endif return (true); } *************** *** 652,656 **** return (false); } ! err = FSpSetNameLocked(fs); if (err!=noErr){ //sprintf(s,"error locking file name: %d",err); --- 642,656 ---- return (false); } ! #if TARGET_API_MAC_CARBON ! { ! FSRef myRef; ! err = FSpMakeFSRef (fs,&myRef); ! if (!err) ! err = FSSetNameLocked(&myRef); ! } ! #else ! err = FSpSetNameLocked(fs); ! #endif ! if (err!=noErr){ //sprintf(s,"error locking file name: %d",err); *************** *** 703,707 **** #ifdef MACVERSION OSStatus err = noErr; - FSSpec fs; // char s[256]; --- 703,706 ---- *************** *** 711,723 **** if (fnum != 0) { ! err = FSpGetFileLocation(fnum,&fs); ! if (err==noErr) FSpClearNameLocked(&fs); ! else { ! //sprintf(s,"Error is %d",err); ! //WriteToConsole(s); ! } return (!oserror (FSClose (fnum))); ! ! } return (true); --- 710,733 ---- if (fnum != 0) { ! #if TARGET_API_MAC_CARBON ! FSRef myRef; ! err = FileRefNumGetFSRef (fnum, &myRef); ! if (err == noErr) { ! FSClearNameLocked (&myRef); ! } ! #else ! FSSpec fs; ! err = FSpGetFileLocation (fnum,&fs); ! if (err==noErr) { ! FSpClearNameLocked (&fs); ! } ! #endif ! else { ! //sprintf(s,"Error is %d",err); ! //WriteToConsole(s); ! } ! return (!oserror (FSClose (fnum))); ! } return (true); *************** *** 750,754 **** #ifdef MACVERSION setfserrorparam (fs); /*in case error message takes a filename parameter*/ ! FSpClearNameLocked(&fs); return (!oserror (FSpDelete (fs))); #endif --- 760,772 ---- #ifdef MACVERSION setfserrorparam (fs); /*in case error message takes a filename parameter*/ ! #if TARGET_API_MAC_CARBON ! { ! FSRef myRef; ! if (FSpMakeFSRef (fs,&myRef)) ! FSClearNameLocked(&myRef); ! } ! #else ! FSpClearNameLocked(fs); ! #endif return (!oserror (FSpDelete (fs))); #endif |
|
From: Andre R. <and...@us...> - 2004-10-23 22:17:17
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32705/Frontier/Common/source Modified Files: error.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: error.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/error.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** error.c 9 Oct 2004 07:21:43 -0000 1.1 --- error.c 23 Oct 2004 22:17:07 -0000 1.2 *************** *** 24,41 **** ******************************************************************************/ ! ! ! ! #ifdef MACVERSION ! #include <AppleEvents.h> ! #include <AERegistry.h> ! #include <Errors.h> ! #include <OSA.h> ! #include <standard.h> ! #endif ! ! #ifdef WIN95VERSION #include "standard.h" - #endif #include "memory.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" #include "standard.h" #include "memory.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:17:05
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32601/Frontier/Common/source Modified Files: dockmenu.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: dockmenu.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/dockmenu.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dockmenu.c 9 Oct 2004 07:21:34 -0000 1.1 --- dockmenu.c 23 Oct 2004 22:16:56 -0000 1.2 *************** *** 30,39 **** */ ! #ifdef MACVERSION ! #include <standard.h> ! #endif ! #ifdef WIN95VERSION ! #include "standard.h" ! #endif #include "menu.h" --- 30,35 ---- */ ! #include "frontier.h" ! #include "standard.h" #include "menu.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:16:43
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32552/Frontier/Common/source Modified Files: dialogs.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: dialogs.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/dialogs.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dialogs.c 9 Oct 2004 07:21:24 -0000 1.1 --- dialogs.c 23 Oct 2004 22:16:32 -0000 1.2 *************** *** 24,36 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <standard.h> ! #include "mac.h" ! #endif ! ! #ifdef WIN95VERSION #include "standard.h" - #include <string.h> - #endif #include "quickdraw.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" #include "standard.h" #include "quickdraw.h" *************** *** 52,56 **** #include "lang.h" #include "mac.h" - #include <string.h> #ifdef flcomponent --- 45,48 ---- |
|
From: Andre R. <and...@us...> - 2004-10-23 22:16:30
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32482/Frontier/Common/source Modified Files: dbverbs.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: dbverbs.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/dbverbs.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dbverbs.c 9 Oct 2004 07:20:55 -0000 1.1 --- dbverbs.c 23 Oct 2004 22:16:17 -0000 1.2 *************** *** 28,41 **** */ #ifdef MACVERSION #include <land.h> - #include <standard.h> #include "mac.h" #endif - #ifdef WIN95VERSION - #include "standard.h" - #endif - #include "ops.h" #include "memory.h" --- 28,39 ---- */ + #include "frontier.h" + #include "standard.h" + #ifdef MACVERSION #include <land.h> #include "mac.h" #endif #include "ops.h" #include "memory.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:16:09
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32401/Frontier/Common/source Modified Files: dbstats.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: dbstats.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/dbstats.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dbstats.c 9 Oct 2004 07:20:27 -0000 1.1 --- dbstats.c 23 Oct 2004 22:15:59 -0000 1.2 *************** *** 24,34 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <standard.h> ! #endif ! ! #ifdef WIN95VERSION #include "standard.h" - #endif #include "memory.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" #include "standard.h" #include "memory.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:15:57
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32345/Frontier/Common/source Modified Files: db.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: db.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/db.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** db.c 17 Oct 2004 12:19:10 -0000 1.2 --- db.c 23 Oct 2004 22:15:48 -0000 1.3 *************** *** 24,34 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <standard.h> ! #endif ! ! #ifdef WIN95VERSION #include "standard.h" - #endif #include "memory.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" #include "standard.h" #include "memory.h" *************** *** 108,113 **** #pragma message ("*********************** DATABASE_DEBUG is ON: output to dblog.txt ***********************") - #include <stdio.h> - #include <string.h> #define dberror(num) debug_dberror(num, __LINE__, true) --- 103,106 ---- |
|
From: Andre R. <and...@us...> - 2004-10-23 22:15:42
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32304/Frontier/Common/source Modified Files: cursor.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: cursor.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/cursor.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** cursor.c 9 Oct 2004 07:19:46 -0000 1.1 --- cursor.c 23 Oct 2004 22:15:33 -0000 1.2 *************** *** 24,37 **** ******************************************************************************/ ! ! ! #ifdef MACVERSION ! #include <standard.h> ! #endif ! ! #ifdef WIN95VERSION ! #include "standard.h" ! #endif ! #include "cursor.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" ! #include "standard.h" #include "cursor.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:15:16
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32183/Frontier/Common/source Modified Files: command.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: command.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/command.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** command.c 9 Oct 2004 07:19:21 -0000 1.1 --- command.c 23 Oct 2004 22:15:04 -0000 1.2 *************** *** 24,34 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <standard.h> ! #endif ! ! #ifdef WIN95VERSION #include "standard.h" - #endif #include "kb.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" #include "standard.h" #include "kb.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:15:03
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32137/Frontier/Common/source Modified Files: claylinelayout.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: claylinelayout.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/claylinelayout.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** claylinelayout.c 9 Oct 2004 07:19:08 -0000 1.1 --- claylinelayout.c 23 Oct 2004 22:14:51 -0000 1.2 *************** *** 24,35 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <Packages.h> ! #include <Palettes.h> ! #include <standard.h> ! #endif ! #ifdef WIN95VERSION ! #include "standard.h" ! #endif #include "font.h" #include "icon.h" --- 24,30 ---- ******************************************************************************/ ! #include "frontier.h" ! #include "standard.h" ! #include "font.h" #include "icon.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:14:46
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32072/Frontier/Common/source Modified Files: claycallbacks.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: claycallbacks.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/claycallbacks.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** claycallbacks.c 9 Oct 2004 07:18:50 -0000 1.1 --- claycallbacks.c 23 Oct 2004 22:14:37 -0000 1.2 *************** *** 24,34 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <standard.h> ! #endif ! ! #ifdef WIN95VERSION #include "standard.h" - #endif #include "cursor.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" #include "standard.h" #include "cursor.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:14:34
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31996/Frontier/Common/source Modified Files: claybrowservalidate.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: claybrowservalidate.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/claybrowservalidate.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** claybrowservalidate.c 9 Oct 2004 07:18:36 -0000 1.1 --- claybrowservalidate.c 23 Oct 2004 22:14:25 -0000 1.2 *************** *** 24,34 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <standard.h> ! #endif ! ! #ifdef WIN95VERSION #include "standard.h" - #endif #include "dialogs.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" #include "standard.h" #include "dialogs.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:14:15
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31892/Frontier/Common/source Modified Files: claybrowserstruc.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: claybrowserstruc.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/claybrowserstruc.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** claybrowserstruc.c 9 Oct 2004 07:18:27 -0000 1.1 --- claybrowserstruc.c 23 Oct 2004 22:14:06 -0000 1.2 *************** *** 24,34 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <standard.h> ! #endif ! ! #ifdef WIN95VERSION #include "standard.h" - #endif #include "cursor.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" #include "standard.h" #include "cursor.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:14:02
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31833/Frontier/Common/source Modified Files: claybrowserexpand.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: claybrowserexpand.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/claybrowserexpand.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** claybrowserexpand.c 9 Oct 2004 07:18:10 -0000 1.1 --- claybrowserexpand.c 23 Oct 2004 22:13:52 -0000 1.2 *************** *** 24,34 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <standard.h> ! #endif ! ! #ifdef WIN95VERSION #include "standard.h" - #endif #include "cursor.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" #include "standard.h" #include "cursor.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:13:49
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31758/Frontier/Common/source Modified Files: cancoonwindow.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: cancoonwindow.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/cancoonwindow.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** cancoonwindow.c 9 Oct 2004 07:17:59 -0000 1.1 --- cancoonwindow.c 23 Oct 2004 22:13:37 -0000 1.2 *************** *** 24,34 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <standard.h> ! #endif ! ! #ifdef WIN95VERSION #include "standard.h" - #endif #include "memory.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" #include "standard.h" #include "memory.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:13:35
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31688/Frontier/Common/source Modified Files: cancoonverbs.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: cancoonverbs.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/cancoonverbs.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** cancoonverbs.c 9 Oct 2004 07:17:48 -0000 1.1 --- cancoonverbs.c 23 Oct 2004 22:13:25 -0000 1.2 *************** *** 24,34 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <standard.h> ! #endif ! ! #ifdef WIN95VERSION ! #include "standard.h" ! #endif #include "resources.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" ! #include "standard.h" #include "resources.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:13:24
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31628/Frontier/Common/source Modified Files: cancoonpopup.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: cancoonpopup.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/cancoonpopup.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** cancoonpopup.c 9 Oct 2004 07:17:40 -0000 1.1 --- cancoonpopup.c 23 Oct 2004 22:13:11 -0000 1.2 *************** *** 24,34 **** ******************************************************************************/ ! #ifdef MACVERSION ! #include <standard.h> ! #endif ! ! #ifdef WIN95VERSION ! #include "standard.h" ! #endif #include "strings.h" --- 24,29 ---- ******************************************************************************/ ! #include "frontier.h" ! #include "standard.h" #include "strings.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:13:09
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31514/Frontier/Common/source Modified Files: cancoon.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: cancoon.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/cancoon.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** cancoon.c 9 Oct 2004 07:17:29 -0000 1.1 --- cancoon.c 23 Oct 2004 22:12:59 -0000 1.2 *************** *** 24,37 **** ******************************************************************************/ #ifdef MACVERSION - #include <standard.h> - #include <EPPC.h> #include <land.h> #endif - #ifdef WIN95VERSION - #include "standard.h" - #endif - #include "memory.h" #include "dialogs.h" --- 24,34 ---- ******************************************************************************/ + #include "frontier.h" + #include "standard.h" + #ifdef MACVERSION #include <land.h> #endif #include "memory.h" #include "dialogs.h" |
|
From: Andre R. <and...@us...> - 2004-10-23 22:12:55
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31436/Frontier/Common/source Modified Files: CallMachOFrameWork.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: CallMachOFrameWork.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/CallMachOFrameWork.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CallMachOFrameWork.c 9 Oct 2004 07:17:08 -0000 1.1 --- CallMachOFrameWork.c 23 Oct 2004 22:12:44 -0000 1.2 *************** *** 24,29 **** ******************************************************************************/ #include "CallMachOFrameWork.h" - #include <CFBundle.h> #include "memory.h" --- 24,31 ---- ******************************************************************************/ + #include "frontier.h" + #include "standard.h" + #include "CallMachOFrameWork.h" #include "memory.h" |