[Fuse-for-macosx-commits] SF.net SVN: fuse-for-macosx: [247] trunk/fuse/fusepb
Brought to you by:
fredm
From: <fr...@us...> - 2006-12-17 03:13:30
|
Revision: 247 http://svn.sourceforge.net/fuse-for-macosx/?rev=247&view=rev Author: fredm Date: 2006-12-16 19:13:29 -0800 (Sat, 16 Dec 2006) Log Message: ----------- Don't ignore settings_cocoa.h and check it in for easier builds from scratch. Added Paths: ----------- trunk/fuse/fusepb/settings_cocoa.h Property Changed: ---------------- trunk/fuse/fusepb/ Property changes on: trunk/fuse/fusepb ___________________________________________________________________ Name: svn:ignore - *~.nib .DS_Store .gdb_history build settings.h settings.m settings_cocoa.h + *~.nib .DS_Store .gdb_history build settings.h settings.m Added: trunk/fuse/fusepb/settings_cocoa.h =================================================================== --- trunk/fuse/fusepb/settings_cocoa.h (rev 0) +++ trunk/fuse/fusepb/settings_cocoa.h 2006-12-17 03:13:29 UTC (rev 247) @@ -0,0 +1,45 @@ +/* settings_cocoa.h: Handling configuration settings + Copyright (c) Copyright (c) 2001-2003 Philip Kendall, Fredrick Meunier + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 49 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + Author contact information: + + E-mail: pak...@sr... + Postal address: 15 Crescent Road, Wokingham, Berks, RG40 2DB, England + +*/ + +#ifndef FUSE_SETTINGS_COCOA_H +#define FUSE_SETTINGS_COCOA_H + +#import <Foundation/NSArray.h> + +#include "settings.h" + +struct settings_cocoa { + + NSMutableArray *recent_snapshots; + +}; + +#define NUM_RECENT_ITEMS 10 + +NSMutableArray* +settings_set_rom_array( settings_info *settings ); +void +settings_get_rom_array( settings_info *settings, NSArray *machineroms ); + +#endif /* #ifndef FUSE_SETTINGS_COCOA_H */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |