Changeset 119 for smplayer/trunk/src/mplayerprocess.h
- Timestamp:
- Dec 27, 2011, 5:44:12 PM (14 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
-
Property svn:mergeinfo
set to
/smplayer/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
smplayer/trunk/src/mplayerprocess.h
r112 r119 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 0Ricardo Villalba <rvm@escomposlinux.org>2 Copyright (C) 2006-2011 Ricardo Villalba <rvm@escomposlinux.org> 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 37 37 { 38 38 public: 39 40 41 39 PipeThread(const QByteArray t, const HPIPE pipe); 40 ~PipeThread(); 41 void run(); 42 42 43 43 private: 44 HPIPE hpipe; 45 QByteArray text; 46 44 HPIPE hpipe; 45 QByteArray text; 47 46 }; 48 47 #endif … … 117 116 118 117 #if defined(Q_OS_OS2) 119 120 121 118 void MPpipeOpen(); 119 void MPpipeClose(); 120 void MPpipeWrite(const QByteArray text); 122 121 #endif 123 122 … … 131 130 132 131 #if defined(Q_OS_OS2) 133 134 HPIPEhpipe;135 PIDpidMP;132 PipeThread *pipeThread; 133 HPIPE hpipe; 134 PID pidMP; 136 135 #endif 137 136 … … 155 154 }; 156 155 156 157 157 #endif
Note:
See TracChangeset
for help on using the changeset viewer.