author | llornkcor <llornkcor> | 2003-05-26 05:03:58 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2003-05-26 05:03:58 (UTC) |
commit | 410f657febc2951dbe7d10b30294a4529bd6ac0e (patch) (side-by-side diff) | |
tree | 2358f965a77dc2801d4b0441000b5a93a58fe6b3 | |
parent | 57e35a76319a949cb9c065aabf953645b79e7d96 (diff) | |
download | opie-410f657febc2951dbe7d10b30294a4529bd6ac0e.zip opie-410f657febc2951dbe7d10b30294a4529bd6ac0e.tar.gz opie-410f657febc2951dbe7d10b30294a4529bd6ac0e.tar.bz2 |
remove extra includes
-rw-r--r-- | core/applets/vmemo/vmemo.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/applets/vmemo/vmemo.cpp b/core/applets/vmemo/vmemo.cpp index 6867e82..7af3d8b 100644 --- a/core/applets/vmemo/vmemo.cpp +++ b/core/applets/vmemo/vmemo.cpp @@ -22,25 +22,24 @@ extern "C" { #include <sys/time.h> #include <sys/types.h> #include <unistd.h> #include <stdio.h> #include <sys/stat.h> #include <fcntl.h> #include <sys/ioctl.h> #include <linux/soundcard.h> #include <string.h> #include <stdlib.h> #include <errno.h> -#include <qtimer.h> typedef struct _waveheader { u_long main_chunk; /* 'RIFF' */ u_long length; /* filelen */ u_long chunk_type; /* 'WAVE' */ u_long sub_chunk; /* 'fmt ' */ u_long sc_len; /* length of sub_chunk, =16 (chunckSize) format len */ u_short format; /* should be 1 for PCM-code (formatTag) */ u_short modus; /* 1 Mono, 2 Stereo (channels) */ u_long sample_fq; /* samples per second (samplesPerSecond) */ @@ -62,32 +61,27 @@ typedef struct _waveheader { #define WAVE_STEREO 2 struct adpcm_state encoder_state; //struct adpcm_state decoder_state; #define WAVE_FORMAT_DVI_ADPCM (0x0011) #define WAVE_FORMAT_PCM (0x0001) #include "vmemo.h" #include <qpe/qpeapplication.h> -#include <qpe/resource.h> #include <qpe/config.h> #include <qpainter.h> -#include <qdatetime.h> -#include <qregexp.h> -#include <qsound.h> -#include <qfile.h> #include <qmessagebox.h> int seq = 0; /* XPM */ static char * vmemo_xpm[] = { "16 16 102 2", " c None", ". c #60636A", "+ c #6E6E72", "@ c #68696E", "# c #4D525C", |