summaryrefslogtreecommitdiffstats
path: root/common/rop3.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove headers that are included in spice_common.hVictor Toso2016-01-071-2/+0
| | | | Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
* common: Fix -Wunused-parameterFabiano Fidêncio2014-09-181-5/+9
|
* Use a log handler to modify abort() behaviourMarc-André Lureau2012-03-201-5/+5
| | | | | | | | | | | | | | | Be more library friendly, by not aborting in library errors. spice_common now includes a proper log handler that will abort by default when reaching a warning. SPICE_ABORT_LEVEL can be changed to modify run-time abort level. SPICE_DEBUG_LEVEL can be changed to be more verbose. By default, only log level more importants than WARNING. Only memory-related functions are allowed to abort(), since they are not recoverable errors in the library.
* server: fix function prototypesChristophe Fergeau2012-03-201-3/+3
| | | | | | | | Several functions in server/ were not specifying an argument list, ie they were declared as void foo(); When compiling with -Wstrict-prototypes, this leads to: test_playback.c:93:5: erreur: function declaration isn’t a prototype [-Werror=strict-prototypes]
* move WARN and WARN_ONCE to spice_common.hChristophe Fergeau2012-03-201-6/+2
|
* common,server: use ASSERT from spice_common.hChristophe Fergeau2012-03-201-7/+1
| | | | | | | spice_common.h provides an ASSERT macro, no need to duplicate it in many places. For now client/debug.h keeps its own copy since debug.h and spice_common.h have clashes on other macros which are trickier to unify.
* add #include <config.h> to all source filesChristophe Fergeau2012-03-201-0/+3
| | | | | | | | When using config.h, it must be the very first include in all source files since it contains #define that may change the compilation process (eg libc structure layout changes when it's used to enable large file support on 32 bit x86 archs). This commit adds it at the beginning of all .c and .cpp files
* use foo(void) instead of foo() in prototypesChristophe Fergeau2012-03-201-1/+1
| | | | | In C, the latter isn't a prototype for a function with no arg, but declares a function with an undefined number of args.
* Add support for 16bit rop3Alexander Larsson2012-03-201-32/+75
|
* Relicense everything from GPL to LGPL 2.1+Alexander Larsson2012-03-201-9/+9
|
* Use pixman_image_t instead of cairo_surface_t as the generic pixman containerAlexander Larsson2012-03-201-28/+28
| | | | | | This allows us to use the simpler dependency of pixman outside of the cairo backend, and it later lets us move the cairo backend to using pixman only.
* Add emacs settings for indent according to spice styleguideAlexander Larsson2012-03-201-0/+1
|
* Rename symbols that were changed in spice-protocolAlexander Larsson2012-03-201-12/+12
| | | | | | This is an automatic change using: $ find -name "*.[ch]" | xargs ../spice-protocol/rename-identifiers.sh ../spice-protocol/renames $ find -name "*.cpp" | xargs ../spice-protocol/rename-identifiers.sh ../spice-protocol/renames
* fresh startYaniv Kamay2012-03-201-0/+613