equal
deleted
inserted
replaced
21 |
21 |
22 public slots: |
22 public slots: |
23 |
23 |
24 private: |
24 private: |
25 QList<QByteArray> m_argsList; |
25 QList<QByteArray> m_argsList; |
26 QVector<char *> m_args; |
26 QVector<const char *> m_args; |
27 |
27 |
28 static void engineMessageCallback(void *context, string255 str); |
28 static void engineMessageCallback(void *context, quint8 len, const char * msg); |
29 void sendIPC(const QByteArray &b); |
29 void sendIPC(const QByteArray &b); |
30 }; |
30 }; |
31 |
31 |
32 #endif // HWENGINE_H |
32 #endif // HWENGINE_H |
33 |
33 |