diff options
Diffstat (limited to 'Src/Plugins/Input/in_linein/LineIn.h')
-rw-r--r-- | Src/Plugins/Input/in_linein/LineIn.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Src/Plugins/Input/in_linein/LineIn.h b/Src/Plugins/Input/in_linein/LineIn.h new file mode 100644 index 00000000..febf7934 --- /dev/null +++ b/Src/Plugins/Input/in_linein/LineIn.h @@ -0,0 +1,25 @@ +#ifndef NULLSOFT_LINEINH +#define NULLSOFT_LINEINH + +class LineIn +{ +public: + LineIn() : posinms(0), paused(false) + {} + int Play(); + void Stop(); + void Pause(); + void Unpause(); + int GetLength(); + int GetOutputTime(); + bool IsPaused() { return paused; } + void SetOutputTime(int time_in_ms) +{} + void SetVolume(int a_v, int a_p) + {} +private: + int posinms; + bool paused; +}; + +#endif
\ No newline at end of file |