Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2017-08-03 10:42:05 +0300
committerKacper Michajłow <kasper93@gmail.com>2017-08-14 00:00:41 +0300
commit82adfbdb6af6c4c0fb7cccf4f9afba511ce862e2 (patch)
tree69ad00ea5abf228d242e71710287d718e6b3e08f /include/ITrackInfo.h
parent1fda105e3b9e5e6c8d2e5254701a8b3761f335ff (diff)
Update to astyle 3.0.1.
Diffstat (limited to 'include/ITrackInfo.h')
-rw-r--r--include/ITrackInfo.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/ITrackInfo.h b/include/ITrackInfo.h
index 137c3026a..2795a36e3 100644
--- a/include/ITrackInfo.h
+++ b/include/ITrackInfo.h
@@ -1,6 +1,6 @@
/*
* (C) 2003-2006 Gabest
- * (C) 2006-2013 see Authors.txt
+ * (C) 2006-2013, 2017 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -65,12 +65,13 @@ struct TrackExtendedInfoAudio {
#pragma pack(pop)
interface __declspec(uuid("03E98D51-DDE7-43aa-B70C-42EF84A3A23D"))
-ITrackInfo :
-public IUnknown {
+ ITrackInfo :
+ public IUnknown
+{
STDMETHOD_(UINT, GetTrackCount)() = 0;
// \param aTrackIdx the track index (from 0 to GetTrackCount()-1)
- STDMETHOD_(BOOL, GetTrackInfo)(UINT aTrackIdx, struct TrackElement * pStructureToFill) = 0;
+ STDMETHOD_(BOOL, GetTrackInfo)(UINT aTrackIdx, struct TrackElement* pStructureToFill) = 0;
// Get an extended information struct relative to the track type
STDMETHOD_(BOOL, GetTrackExtendedInfo)(UINT aTrackIdx, void* pStructureToFill) = 0;