diff options
| author | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-02-19 02:30:06 +0000 |
|---|---|---|
| committer | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-02-19 02:30:06 +0000 |
| commit | 96a007f1ef6618f4a1a68d33fdd1a8abc886a397 (patch) | |
| tree | e264c47e305fa8efdda1ccef1877c55dd07fd37f /macosx/plugins/DFSound/macsrc | |
| parent | fcd5b6fa91a2112bc1eb783cc0bde15386b4d91d (diff) | |
| download | pcsxr-96a007f1ef6618f4a1a68d33fdd1a8abc886a397.tar.gz | |
-Removed obsoleted files.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@63550 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/plugins/DFSound/macsrc')
| -rw-r--r-- | macosx/plugins/DFSound/macsrc/PluginController-Null.h | 16 | ||||
| -rw-r--r-- | macosx/plugins/DFSound/macsrc/PluginController-Null.m | 79 |
2 files changed, 0 insertions, 95 deletions
diff --git a/macosx/plugins/DFSound/macsrc/PluginController-Null.h b/macosx/plugins/DFSound/macsrc/PluginController-Null.h deleted file mode 100644 index c9635e39..00000000 --- a/macosx/plugins/DFSound/macsrc/PluginController-Null.h +++ /dev/null @@ -1,16 +0,0 @@ -/* NetSfPeopsSPUPluginController */
-
-#import <Cocoa/Cocoa.h>
-#import "NamedSlider.h"
-
-void DoAbout();
-long DoConfiguration();
-void LoadConfiguration();
-
-#define PluginController NullSPUPluginController
-
-@interface PluginController : NSWindowController
-{
-}
-- (IBAction)ok:(id)sender;
-@end
diff --git a/macosx/plugins/DFSound/macsrc/PluginController-Null.m b/macosx/plugins/DFSound/macsrc/PluginController-Null.m deleted file mode 100644 index b4fc694d..00000000 --- a/macosx/plugins/DFSound/macsrc/PluginController-Null.m +++ /dev/null @@ -1,79 +0,0 @@ -#import "PluginController-Null.h"
-#include "stdafx.h"
-#include "externals.h"
-
-#define APP_ID @"com.codeplex.pcsxr.null.SPUPlugin"
-#define PrefsKey APP_ID @" Settings"
-
-static PluginController *pluginController;
-char * pConfigFile=NULL;
-
-void DoAbout()
-{
- // Get parent application instance
- NSApplication *app = [NSApplication sharedApplication];
- NSBundle *bundle = [NSBundle bundleWithIdentifier:APP_ID];
-
- // Get Credits.rtf
- NSString *path = [bundle pathForResource:@"Credits" ofType:@"rtf"];
- NSAttributedString *credits;
- if (path) {
- credits = [[[NSAttributedString alloc] initWithPath: path
- documentAttributes:NULL] autorelease];
- } else {
- credits = [[[NSAttributedString alloc] initWithString:@""] autorelease];
- }
-
- // Get Application Icon
- NSImage *icon = [[NSWorkspace sharedWorkspace] iconForFile:[bundle bundlePath]];
- NSSize size = NSMakeSize(64, 64);
- [icon setSize:size];
-
- [app orderFrontStandardAboutPanelWithOptions:[NSDictionary dictionaryWithObjectsAndKeys:
- [bundle objectForInfoDictionaryKey:@"CFBundleName"], @"ApplicationName",
- icon, @"ApplicationIcon",
- [bundle objectForInfoDictionaryKey:@"CFBundleShortVersionString"], @"ApplicationVersion",
- [bundle objectForInfoDictionaryKey:@"CFBundleVersion"], @"Version",
- [bundle objectForInfoDictionaryKey:@"NSHumanReadableCopyright"], @"Copyright",
- credits, @"Credits",
- nil]];
-}
-
-
-long DoConfiguration()
-{
- NSWindow *window;
-
- if (pluginController == nil) {
- pluginController = [[PluginController alloc] initWithWindowNibName:@"NullSpuPluginMain"];
- }
- window = [pluginController window];
-
- /* load values */
- //[pluginController loadValues];
-
- [window center];
- [window makeKeyAndOrderFront:nil];
-
- return 0;
-}
-
-void ReadConfig(void)
-{
- iVolume = 1;
- iUseTimer = 2;
- iSPUIRQWait = 1;
- iXAPitch = 0;
- iUseReverb = 1;
- iUseInterpolation = 0;
-
-}
-
-@implementation PluginController
-
-- (IBAction)ok:(id)sender
-{
- [self close];
-}
-
-@end
|
