diff src/xs_player.h @ 753:36c6a6e629bb

Rename some variables.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 05 Nov 2012 18:51:11 +0200
parents 55eea3fa8868
children 8f0d11865742
line wrap: on
line diff
--- a/src/xs_player.h	Mon Nov 05 18:47:33 2012 +0200
+++ b/src/xs_player.h	Mon Nov 05 18:51:11 2012 +0200
@@ -19,24 +19,24 @@
     guint       (*plrFillBuffer)(struct XSEngineState *, gchar *, guint);
     gboolean    (*plrLoadSID)(struct XSEngineState *, gchar *);
     void        (*plrDeleteSID)(struct XSEngineState *);
-    XSTuneInfo*    (*plrGetSIDInfo)(const gchar *);
+    XSTuneInfo* (*plrGetSIDInfo)(const gchar *);
     gboolean    (*plrUpdateSIDInfo)(struct XSEngineState *);
     void        (*plrFlush)(struct XSEngineState *);
 } XSEngine;
 
 
 typedef struct XSEngineState {
-    gint        audioFrequency,     /* Audio settings */
+    gint        audioFrequency,    /* Audio settings */
                 audioChannels,
                 audioBitsPerSample;
     AFormat     audioFormat;
 
-    void        *sidEngine;         /* SID-emulation internal engine data */
-    XSEngine *sidPlayer;         /* Selected player engine */
+    void        *internal;         /* SID-emulation internal engine data */
+    XSEngine    *engine;           /* Selected player engine */
     gboolean    isError,
                 isPlaying,
                 isInitialized;
-    gint        currSong,           /* Current sub-tune */
+    gint        currSong,          /* Current sub-tune */
                 lastTime;
 
     XSTuneInfo *tuneInfo;