--- libgig/trunk/src/gig.h 2021/06/15 20:28:21 3932 +++ libgig/trunk/src/gig.h 2021/06/17 09:21:11 3933 @@ -1365,8 +1365,9 @@ public: String Name; ///< Stores the name of this Group. - Sample* GetFirstSample(); - Sample* GetNextSample(); + Sample* GetSample(size_t index); + Sample* GetFirstSample() LIBGIG_DEPRECATED_API("Use GetSample() instead."); + Sample* GetNextSample() LIBGIG_DEPRECATED_API("Use GetSample() instead."); void AddSample(Sample* pSample); protected: Group(File* file, RIFF::Chunk* ck3gnm);