/usr/include/ptlib/wince/ceostream.h is in libpt-1.10.10-dev 1.10.10-3.1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #ifndef _YWINCEOSTREAM_H
#define _YWINCEOSTREAM_H
// callback function type for subscribing to trace messages
typedef void (*YWinCEOStreamCB)(WPARAM);
class YWinCEOStream : public ostream
{
public:
YWinCEOStream();
~YWinCEOStream();
void Subscribe(HWND Reciever,UINT MessageID);
void Subscribe(YWinCEOStreamCB pCB);
void UnSubscribe();
};
#endif _YWINCEOSTREAM_H
|