Skip to content

Commit

Permalink
Taking Seek modes from ctypes SEEK_MODES
Browse files Browse the repository at this point in the history
  • Loading branch information
vokimon committed Jul 2, 2014
1 parent 327c5bb commit 7cf655d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wavefile/wavefile.py
Expand Up @@ -118,9 +118,9 @@ class Format :
ENDMASK = 0x30000000 ENDMASK = 0x30000000


class Seek() : class Seek() :
SET = 0 # Relative to the begining of the file SET = SEEK_MODES.SEEK_SET # Relative to the begining of the file
CUR = 1 # Relative to the last read frame CUR = SEEK_MODES.SEEK_CUR # Relative to the last read frame
END = 2 # Relative to the end of the file END = SEEK_MODES.SEEK_END # Relative to the end of the file




class WaveMetadata(object) : class WaveMetadata(object) :
Expand Down

0 comments on commit 7cf655d

Please sign in to comment.