~ubuntu-branches/debian/stretch/spice/stretch

« back to all changes in this revision

Viewing changes to server/char_device.h

  • Committer: Package Import Robot
  • Author(s): Liang Guo, Liang Guo, Michael Tokarev
  • Date: 2011-11-29 14:37:08 UTC
  • mfrom: (0.5.1) (0.2.2)
  • mto: (2.2.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: package-import@ubuntu.com-20111129143708-ovrce9zj5l6rwi1m
[ Liang Guo ]
* New upstream release (Closes: #651262)
* Refresh debian/copyright
* Remove fix-typo-in-cmd_line_parser-cpp.patch, applied upstream
* Remove fix-typo-in-record-cpp.patch, applied upstream
* Remove use-requires-private-for-libspice-pkgconfig.patch, applied upstream
* Change Build-Depends on libspice-protocol-dev to (>= 0.9.1~)
* Refresh libspice-server1.symbols
* Update debian/rules clean target
* Ignore common/win/my_getopt-1.5/Makefile change when building package
* debian/control: set DMUA

[ Michael Tokarev ]
* use `rm -f' instead of `-rm' in debian/rules clean targets
* remove python_modules/*.pyc in clean target

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef __CHAR_DEVICE_H__
2
2
#define __CHAR_DEVICE_H__
3
3
 
4
 
#include "spice-experimental.h"
 
4
#include "spice.h"
5
5
 
6
6
struct SpiceCharDeviceState {
7
7
    void (*wakeup)(SpiceCharDeviceInstance *sin);
8
8
};
9
9
 
 
10
void spicevmc_device_connect(SpiceCharDeviceInstance *sin,
 
11
                             uint8_t channel_type);
 
12
void spicevmc_device_disconnect(SpiceCharDeviceInstance *char_device);
 
13
 
10
14
#endif // __CHAR_DEVICE_H__
11