summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorscop <scop>2005-04-18 21:18:43 +0000
committerscop <scop>2005-04-18 21:18:43 +0000
commit13657b1d3c7c45278eea357be9fb169ad9c50907 (patch)
tree99be99235dfbb5ce843c325ce4684c1e8dfb7edc
parent7d8c274a64df5375bb4dea2cf18ac5984165467b (diff)
downloadvdr-plugin-dxr3-13657b1d3c7c45278eea357be9fb169ad9c50907.tar.gz
vdr-plugin-dxr3-13657b1d3c7c45278eea357be9fb169ad9c50907.tar.bz2
More indentation settings.
-rw-r--r--dxr3.c3
-rw-r--r--dxr3.h1
-rw-r--r--dxr3audiodecoder.c1
-rw-r--r--dxr3audiodecoder.h1
-rw-r--r--dxr3blackframe.c1
-rw-r--r--dxr3colormanager.c1
-rw-r--r--dxr3colormanager.h1
-rw-r--r--dxr3configdata.c1
-rw-r--r--dxr3configdata.h1
-rw-r--r--dxr3cpu.c1
-rw-r--r--dxr3cpu.h1
-rw-r--r--dxr3demuxdevice.c1
-rw-r--r--dxr3demuxdevice.h1
-rw-r--r--dxr3device.c1
-rw-r--r--dxr3device.h1
-rw-r--r--dxr3dolbydigital.c1
-rw-r--r--dxr3dolbydigital.h1
-rw-r--r--dxr3ffmpeg.c1
-rw-r--r--dxr3ffmpeg.h1
-rw-r--r--dxr3generaldefines.h1
-rw-r--r--dxr3i18n.c1
-rw-r--r--dxr3i18n.h1
-rw-r--r--dxr3interface.c1
-rw-r--r--dxr3interface.h1
-rw-r--r--dxr3log.c1
-rw-r--r--dxr3log.h1
-rw-r--r--dxr3memcpy.c1
-rw-r--r--dxr3memcpy.h1
-rw-r--r--dxr3multichannelaudio.c1
-rw-r--r--dxr3multichannelaudio.h1
-rw-r--r--dxr3nextpts.c1
-rw-r--r--dxr3nextpts.h1
-rw-r--r--dxr3osd.c1
-rw-r--r--dxr3osd.h1
-rw-r--r--dxr3osd_subpicture.c1
-rw-r--r--dxr3osd_subpicture.h1
-rw-r--r--dxr3outputthread.c1
-rw-r--r--dxr3outputthread.h1
-rw-r--r--dxr3palettemanager.c1
-rw-r--r--dxr3palettemanager.h1
-rw-r--r--dxr3pesframe.c1
-rw-r--r--dxr3pesframe.h1
-rw-r--r--dxr3singleton.h1
-rw-r--r--dxr3spudecoder.c1
-rw-r--r--dxr3spudecoder.h1
-rw-r--r--dxr3spuencoder.c1
-rw-r--r--dxr3spuencoder.h1
-rw-r--r--dxr3syncbuffer.c1
-rw-r--r--dxr3syncbuffer.h1
-rw-r--r--dxr3sysclock.c1
-rw-r--r--dxr3sysclock.h1
-rw-r--r--dxr3tools.h1
-rw-r--r--dxr3unixserversocket.c1
-rw-r--r--dxr3unixserversocket.h1
-rw-r--r--dxr3vdrincludes.h1
55 files changed, 56 insertions, 1 deletions
diff --git a/dxr3.c b/dxr3.c
index 8f3b102..e2b3230 100644
--- a/dxr3.c
+++ b/dxr3.c
@@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
-* $Id: dxr3.c,v 1.5 2005/04/18 19:34:23 scop Exp $
+* $Id: dxr3.c,v 1.6 2005/04/18 21:18:43 scop Exp $
*/
@@ -448,5 +448,6 @@ VDRPLUGINCREATOR(cPluginDxr3); // Don't touch this!
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3.h b/dxr3.h
index ec2d80e..6632546 100644
--- a/dxr3.h
+++ b/dxr3.h
@@ -153,5 +153,6 @@ public:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3audiodecoder.c b/dxr3audiodecoder.c
index bbf3c2e..e8a1a30 100644
--- a/dxr3audiodecoder.c
+++ b/dxr3audiodecoder.c
@@ -297,5 +297,6 @@ bool cDxr3AudioDecoder::HeadCheck(unsigned long head)
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3audiodecoder.h b/dxr3audiodecoder.h
index 6c76886..7aab471 100644
--- a/dxr3audiodecoder.h
+++ b/dxr3audiodecoder.h
@@ -82,5 +82,6 @@ private:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3blackframe.c b/dxr3blackframe.c
index a12589e..33344cf 100644
--- a/dxr3blackframe.c
+++ b/dxr3blackframe.c
@@ -1288,5 +1288,6 @@ int blackframeLength = sizeof(blackframe);
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3colormanager.c b/dxr3colormanager.c
index d6206c4..93311ba 100644
--- a/dxr3colormanager.c
+++ b/dxr3colormanager.c
@@ -381,5 +381,6 @@ void cColorManager::SetBgColor(unsigned int bgColor)
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3colormanager.h b/dxr3colormanager.h
index 67d7b55..a194623 100644
--- a/dxr3colormanager.h
+++ b/dxr3colormanager.h
@@ -124,5 +124,6 @@ private: // Private attributes
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3configdata.c b/dxr3configdata.c
index 8cdd864..dc90c2e 100644
--- a/dxr3configdata.c
+++ b/dxr3configdata.c
@@ -43,5 +43,6 @@ cDxr3ConfigData::cDxr3ConfigData()
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3configdata.h b/dxr3configdata.h
index 097cd8a..abf021a 100644
--- a/dxr3configdata.h
+++ b/dxr3configdata.h
@@ -112,5 +112,6 @@ protected:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3cpu.c b/dxr3cpu.c
index 133ef7a..41f2435 100644
--- a/dxr3cpu.c
+++ b/dxr3cpu.c
@@ -139,5 +139,6 @@ bool cDxr3CPU::Cpuid(unsigned long function, unsigned long& out_eax, unsigned lo
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3cpu.h b/dxr3cpu.h
index 9a49e6a..383951a 100644
--- a/dxr3cpu.h
+++ b/dxr3cpu.h
@@ -108,5 +108,6 @@ private:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3demuxdevice.c b/dxr3demuxdevice.c
index dbb061b..1a90fde 100644
--- a/dxr3demuxdevice.c
+++ b/dxr3demuxdevice.c
@@ -677,5 +677,6 @@ int cDxr3DemuxDevice::DemuxAudioPes(const uint8_t* buf, int length)
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3demuxdevice.h b/dxr3demuxdevice.h
index ac239f7..fdd1942 100644
--- a/dxr3demuxdevice.h
+++ b/dxr3demuxdevice.h
@@ -90,5 +90,6 @@ private:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3device.c b/dxr3device.c
index 31cd16f..fdda67c 100644
--- a/dxr3device.c
+++ b/dxr3device.c
@@ -515,5 +515,6 @@ cOsdBase *cDxr3Device::NewOsd(int x, int y)
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3device.h b/dxr3device.h
index f032863..14c3191 100644
--- a/dxr3device.h
+++ b/dxr3device.h
@@ -96,5 +96,6 @@ protected:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3dolbydigital.c b/dxr3dolbydigital.c
index 4d74448..3b7182b 100644
--- a/dxr3dolbydigital.c
+++ b/dxr3dolbydigital.c
@@ -60,5 +60,6 @@ void cDxr3DolbyDigital::Action()
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3dolbydigital.h b/dxr3dolbydigital.h
index ae21b56..2069341 100644
--- a/dxr3dolbydigital.h
+++ b/dxr3dolbydigital.h
@@ -51,5 +51,6 @@ private:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3ffmpeg.c b/dxr3ffmpeg.c
index 0a7ddcc..9a93553 100644
--- a/dxr3ffmpeg.c
+++ b/dxr3ffmpeg.c
@@ -92,5 +92,6 @@ void cDxr3Ffmepg::CloseCodec(struct Dxr3Codec& Codec)
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3ffmpeg.h b/dxr3ffmpeg.h
index d4347e2..165f646 100644
--- a/dxr3ffmpeg.h
+++ b/dxr3ffmpeg.h
@@ -70,5 +70,6 @@ private:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3generaldefines.h b/dxr3generaldefines.h
index 4f01e84..13155ee 100644
--- a/dxr3generaldefines.h
+++ b/dxr3generaldefines.h
@@ -49,5 +49,6 @@ enum eDxr3TrickState {
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3i18n.c b/dxr3i18n.c
index 12dfe5e..4bfe0f9 100644
--- a/dxr3i18n.c
+++ b/dxr3i18n.c
@@ -750,5 +750,6 @@ const tI18nPhrase Phrases[] = {
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3i18n.h b/dxr3i18n.h
index 2200855..eb845b2 100644
--- a/dxr3i18n.h
+++ b/dxr3i18n.h
@@ -31,5 +31,6 @@ extern const tI18nPhrase Phrases[];
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3interface.c b/dxr3interface.c
index ba5d248..f5f4c17 100644
--- a/dxr3interface.c
+++ b/dxr3interface.c
@@ -1394,5 +1394,6 @@ cMutex* cDxr3Interface::m_pMutex = new cMutex;
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3interface.h b/dxr3interface.h
index d790eef..ffa2311 100644
--- a/dxr3interface.h
+++ b/dxr3interface.h
@@ -181,5 +181,6 @@ protected:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3log.c b/dxr3log.c
index ef1cb74..4c7f4f5 100644
--- a/dxr3log.c
+++ b/dxr3log.c
@@ -77,5 +77,6 @@ void cLog::Close()
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3log.h b/dxr3log.h
index 6413a3d..852249c 100644
--- a/dxr3log.h
+++ b/dxr3log.h
@@ -109,5 +109,6 @@ protected:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3memcpy.c b/dxr3memcpy.c
index c4736b1..fe65cc0 100644
--- a/dxr3memcpy.c
+++ b/dxr3memcpy.c
@@ -445,5 +445,6 @@ unsigned long long int cDxr3MemcpyBench::Rdtsc(uint32_t config_flags)
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3memcpy.h b/dxr3memcpy.h
index 9214d53..0fb1442 100644
--- a/dxr3memcpy.h
+++ b/dxr3memcpy.h
@@ -94,5 +94,6 @@ extern void *(* dxr3_memcpy)(void *to, const void *from, size_t len);
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3multichannelaudio.c b/dxr3multichannelaudio.c
index 8c31aea..9a12d70 100644
--- a/dxr3multichannelaudio.c
+++ b/dxr3multichannelaudio.c
@@ -646,5 +646,6 @@ void cMultichannelAudio::Encapsulate(uchar *b, int length)
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3multichannelaudio.h b/dxr3multichannelaudio.h
index 1c8091e..fcd0594 100644
--- a/dxr3multichannelaudio.h
+++ b/dxr3multichannelaudio.h
@@ -35,5 +35,6 @@ public:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3nextpts.c b/dxr3nextpts.c
index 6f6ffeb..6ced0df 100644
--- a/dxr3nextpts.c
+++ b/dxr3nextpts.c
@@ -27,5 +27,6 @@ cMutex* cDxr3NextPts::m_pMutex = new cMutex;
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3nextpts.h b/dxr3nextpts.h
index daddbfb..4d66d0a 100644
--- a/dxr3nextpts.h
+++ b/dxr3nextpts.h
@@ -57,5 +57,6 @@ private:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3osd.c b/dxr3osd.c
index b60ae07..d46e619 100644
--- a/dxr3osd.c
+++ b/dxr3osd.c
@@ -161,5 +161,6 @@ void cDxr3Osd::MoveWindow(cWindow *Window, int x, int y)
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3osd.h b/dxr3osd.h
index dae804e..d948164 100644
--- a/dxr3osd.h
+++ b/dxr3osd.h
@@ -44,5 +44,6 @@ public:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3osd_subpicture.c b/dxr3osd_subpicture.c
index 3b9f6a8..97a99e9 100644
--- a/dxr3osd_subpicture.c
+++ b/dxr3osd_subpicture.c
@@ -177,5 +177,6 @@ void cDxr3SubpictureOsd::Flush()
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3osd_subpicture.h b/dxr3osd_subpicture.h
index 8eae204..78e4bd7 100644
--- a/dxr3osd_subpicture.h
+++ b/dxr3osd_subpicture.h
@@ -31,5 +31,6 @@ public:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3outputthread.c b/dxr3outputthread.c
index 2130a7d..5c9af6b 100644
--- a/dxr3outputthread.c
+++ b/dxr3outputthread.c
@@ -234,5 +234,6 @@ void cDxr3VideoOutThread::Action()
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3outputthread.h b/dxr3outputthread.h
index 2a5c329..e50393b 100644
--- a/dxr3outputthread.h
+++ b/dxr3outputthread.h
@@ -86,5 +86,6 @@ private:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3palettemanager.c b/dxr3palettemanager.c
index 59c6ea5..83641e1 100644
--- a/dxr3palettemanager.c
+++ b/dxr3palettemanager.c
@@ -117,5 +117,6 @@ uint32_t* cDxr3PaletteManager::GetPalette()
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3palettemanager.h b/dxr3palettemanager.h
index 4a05e52..7256853 100644
--- a/dxr3palettemanager.h
+++ b/dxr3palettemanager.h
@@ -41,5 +41,6 @@ private:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3pesframe.c b/dxr3pesframe.c
index 297ae5c..b32335d 100644
--- a/dxr3pesframe.c
+++ b/dxr3pesframe.c
@@ -250,5 +250,6 @@ const uint32_t cDxr3PesFrame::MAX_PES_HEADER_SIZE = 184;
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3pesframe.h b/dxr3pesframe.h
index 56f6963..a5e3ae2 100644
--- a/dxr3pesframe.h
+++ b/dxr3pesframe.h
@@ -170,5 +170,6 @@ private:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3singleton.h b/dxr3singleton.h
index 316d8ac..fbc8031 100644
--- a/dxr3singleton.h
+++ b/dxr3singleton.h
@@ -48,5 +48,6 @@ class Singleton
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3spudecoder.c b/dxr3spudecoder.c
index fc49b42..cab7544 100644
--- a/dxr3spudecoder.c
+++ b/dxr3spudecoder.c
@@ -107,5 +107,6 @@ int cDxr3SpuDecoder::setTime(uint32_t pts)
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3spudecoder.h b/dxr3spudecoder.h
index e5c8bc7..5f75144 100644
--- a/dxr3spudecoder.h
+++ b/dxr3spudecoder.h
@@ -66,5 +66,6 @@ private:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3spuencoder.c b/dxr3spuencoder.c
index 18ef0e1..528f69c 100644
--- a/dxr3spuencoder.c
+++ b/dxr3spuencoder.c
@@ -242,5 +242,6 @@ void cSPUEncoder::CalculateActiveOsdArea()
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3spuencoder.h b/dxr3spuencoder.h
index f3ccea6..075338d 100644
--- a/dxr3spuencoder.h
+++ b/dxr3spuencoder.h
@@ -205,5 +205,6 @@ private:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3syncbuffer.c b/dxr3syncbuffer.c
index f9f9d50..fd2a967 100644
--- a/dxr3syncbuffer.c
+++ b/dxr3syncbuffer.c
@@ -466,5 +466,6 @@ void cDxr3SyncBuffer::ReceiverStopped(void)
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3syncbuffer.h b/dxr3syncbuffer.h
index f0d82fa..bfef1ec 100644
--- a/dxr3syncbuffer.h
+++ b/dxr3syncbuffer.h
@@ -140,5 +140,6 @@ private:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3sysclock.c b/dxr3sysclock.c
index 192ccc9..c20e6b9 100644
--- a/dxr3sysclock.c
+++ b/dxr3sysclock.c
@@ -72,5 +72,6 @@ void cDxr3SysClock::SetSpuPts(uint32_t pts)
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3sysclock.h b/dxr3sysclock.h
index deb969c..cc52e8e 100644
--- a/dxr3sysclock.h
+++ b/dxr3sysclock.h
@@ -58,5 +58,6 @@ protected:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3tools.h b/dxr3tools.h
index 15d709a..7ebad56 100644
--- a/dxr3tools.h
+++ b/dxr3tools.h
@@ -103,5 +103,6 @@ namespace Tools
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3unixserversocket.c b/dxr3unixserversocket.c
index 0ddceb7..e4976fd 100644
--- a/dxr3unixserversocket.c
+++ b/dxr3unixserversocket.c
@@ -211,5 +211,6 @@ void cDxr3StartStopThread::Action()
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3unixserversocket.h b/dxr3unixserversocket.h
index 3e56599..8849ae8 100644
--- a/dxr3unixserversocket.h
+++ b/dxr3unixserversocket.h
@@ -86,5 +86,6 @@ private:
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End:
diff --git a/dxr3vdrincludes.h b/dxr3vdrincludes.h
index 39d0f51..347e350 100644
--- a/dxr3vdrincludes.h
+++ b/dxr3vdrincludes.h
@@ -57,5 +57,6 @@
// Local variables:
// mode: c++
// c-file-style: "stroustrup"
+// c-file-offsets: ((inline-open . 0))
// indent-tabs-mode: t
// End: