diff --git a/headers/os/midi2/MidiEndpoint.h b/headers/os/midi2/MidiEndpoint.h index 42fa98ef89..9c801fd704 100644 --- a/headers/os/midi2/MidiEndpoint.h +++ b/headers/os/midi2/MidiEndpoint.h @@ -17,8 +17,8 @@ class BMidiEndpoint { public: - const char* Name() const; - void SetName(const char* name); + const char *Name() const; + void SetName(const char *name); int32 ID() const; @@ -32,8 +32,8 @@ public: status_t Release(); status_t Acquire(); - status_t SetProperties(const BMessage* properties); - status_t GetProperties(BMessage* properties) const; + status_t SetProperties(const BMessage *properties); + status_t GetProperties(BMessage *properties) const; status_t Register(); status_t Unregister(); @@ -47,7 +47,7 @@ private: friend class BMidiRoster; friend class BPrivate::BMidiRosterLooper; - BMidiEndpoint(const char* name); + BMidiEndpoint(const char *name); virtual ~BMidiEndpoint(); virtual void _Reserved1(); @@ -60,7 +60,7 @@ private: virtual void _Reserved8(); status_t SendRegisterRequest(bool); - status_t SendChangeRequest(BMessage*); + status_t SendChangeRequest(BMessage *); bool IsRegistered() const; bool LockLooper() const;