-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
880 changed files
with
84,429 additions
and
27,436 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
31 changes: 31 additions & 0 deletions
31
JuceLibraryCode/modules/juce_audio_basics/audio_play_head/juce_AudioPlayHead.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
============================================================================== | ||
This file is part of the JUCE library. | ||
Copyright (c) 2022 - Raw Material Software Limited | ||
JUCE is an open source library subject to commercial or open-source | ||
licensing. | ||
The code included in this file is provided under the terms of the ISC license | ||
http://www.isc.org/downloads/software-support-policy/isc-license. Permission | ||
To use, copy, modify, and/or distribute this software for any purpose with or | ||
without fee is hereby granted provided that the above copyright notice and | ||
this permission notice appear in all copies. | ||
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER | ||
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE | ||
DISCLAIMED. | ||
============================================================================== | ||
*/ | ||
|
||
namespace juce | ||
{ | ||
|
||
bool AudioPlayHead::canControlTransport() { return false; } | ||
void AudioPlayHead::transportPlay ([[maybe_unused]] bool shouldStartPlaying) {} | ||
void AudioPlayHead::transportRecord ([[maybe_unused]] bool shouldStartRecording) {} | ||
void AudioPlayHead::transportRewind() {} | ||
|
||
} // namespace juce |
Oops, something went wrong.