Skip to content

Commit f7dad6b

Browse files
committed
Rebrand MacFUSE framework as OSXFUSE framework
1 parent 3e606fd commit f7dad6b

21 files changed

+174
-174
lines changed

GMAppleDouble.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// ================================================================
3131
//
3232
// GMAppleDouble.h
33-
// MacFUSE
33+
// OSXFUSE
3434
//
3535
// Created by ted on 12/29/07.
3636
//

GMAppleDouble.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// ================================================================
3131
//
3232
// GMAppleDouble.m
33-
// MacFUSE
33+
// OSXFUSE
3434
//
3535
// Created by ted on 12/29/07.
3636
//

GMDTrace.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ extern "C" {
1717
/* Leopard+ */
1818

1919
#include <sys/sdt.h>
20-
#include <macfuse_objc_dtrace.h>
20+
#include <osxfuse_objc_dtrace.h>
2121

2222
#else
2323

2424
/* Tiger- */
2525

26-
#define MACFUSE_OBJC_DELEGATE_ENTRY(arg0)
27-
#define MACFUSE_OBJC_DELEGATE_RETURN(arg0)
26+
#define OSXFUSE_OBJC_DELEGATE_ENTRY(arg0)
27+
#define OSXFUSE_OBJC_DELEGATE_RETURN(arg0)
2828

29-
#define MACFUSE_OBJC_DELEGATE_ENTRY_ENABLED() 0
30-
#define MACFUSE_OBJC_DELEGATE_RETURN_ENABLED() 0
29+
#define OSXFUSE_OBJC_DELEGATE_ENTRY_ENABLED() 0
30+
#define OSXFUSE_OBJC_DELEGATE_RETURN_ENABLED() 0
3131

3232
#endif /* Leopard+/Tiger */
3333

GMDataBackedFileDelegate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// ================================================================
3131
//
3232
// GMDataBackedFileDelegate.h
33-
// MacFUSE
33+
// OSXFUSE
3434
//
3535
// Created by ted on 1/5/08.
3636
//

GMDataBackedFileDelegate.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// ================================================================
3131
//
3232
// GMDataBackedFileDelegate.m
33-
// MacFUSE
33+
// OSXFUSE
3434
//
3535
// Created by ted on 1/5/08.
3636
//

GMFinderInfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// ================================================================
3131
//
3232
// GMFinderInfo.h
33-
// MacFUSE
33+
// OSXFUSE
3434
//
3535
// Created by ted on 12/29/07.
3636
//

GMFinderInfo.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// ================================================================
3131
//
3232
// GMFinderInfo.m
33-
// MacFUSE
33+
// OSXFUSE
3434
//
3535
// Created by ted on 12/29/07.
3636
//

GMResourceFork.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// ================================================================
3131
//
3232
// GMResourceFork.h
33-
// MacFUSE
33+
// OSXFUSE
3434
//
3535
// Created by ted on 12/29/07.
3636
//

GMResourceFork.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// ================================================================
3131
//
3232
// GMResourceFork.m
33-
// MacFUSE
33+
// OSXFUSE
3434
//
3535
// Created by ted on 12/29/07.
3636
//

GMUserFileSystem.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@
7575
* kGMUserFileSystemMountPathkey.<br>
7676
*
7777
* The best way to get started with GMUserFileSystem is to look at some example
78-
* file systems that use MacFUSE.framework. See the example file systems found
79-
* <a href="http://macfuse.googlecode.com/svn/trunk/filesystems-objc/">here</a>.
78+
* file systems that use OSXFUSE.framework. See the example file systems found
79+
* <a href="https://github.com/osxfuse/filesystems/">here</a>.
8080
*/
8181
GM_EXPORT @interface GMUserFileSystem : NSObject {
8282
@private
@@ -111,8 +111,7 @@ GM_EXPORT @interface GMUserFileSystem : NSObject {
111111
/*!
112112
* @abstract Mount the file system at the given path.
113113
* @discussion Mounts the file system at mountPath with the given set of options.
114-
* The set of available options can be found on the
115-
* <a href="http://code.google.com/p/macfuse/wiki/OPTIONS">options</a> wiki page.
114+
* The set of available options can be found on the options wiki page.
116115
* For example, to turn on debug output add \@"debug" to the options NSArray.
117116
* If the mount succeeds, then a kGMUserFileSystemDidMount notification is posted
118117
* to the default noification center. If the mount fails, then a

0 commit comments

Comments
 (0)