summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/xine/video_out.h6
-rw-r--r--include/xine/xmllexer.h2
2 files changed, 6 insertions, 2 deletions
diff --git a/include/xine/video_out.h b/include/xine/video_out.h
index c7432e1fc..f34380af1 100644
--- a/include/xine/video_out.h
+++ b/include/xine/video_out.h
@@ -247,7 +247,11 @@ struct xine_video_port_s {
#define VO_PROP_WINDOW_HEIGHT 16 /* read-only */
#define VO_PROP_BUFS_IN_FIFO 17 /* read-only */
#define VO_PROP_NUM_STREAMS 18 /* read-only */
-#define VO_NUM_PROPERTIES 19
+#define VO_PROP_OUTPUT_WIDTH 19 /* read-only */
+#define VO_PROP_OUTPUT_HEIGHT 20 /* read-only */
+#define VO_PROP_OUTPUT_XOFFSET 21 /* read-only */
+#define VO_PROP_OUTPUT_YOFFSET 22 /* read-only */
+#define VO_NUM_PROPERTIES 23
/* number of colors in the overlay palette. Currently limited to 256
at most, because some alphablend functions use an 8-bit index into
diff --git a/include/xine/xmllexer.h b/include/xine/xmllexer.h
index 10bcc8676..2cec3d856 100644
--- a/include/xine/xmllexer.h
+++ b/include/xine/xmllexer.h
@@ -53,7 +53,7 @@
/* public functions */
void lexer_init(const char * buf, int size) XINE_PROTECTED;
-int lexer_get_token(char * tok, int tok_size) XINE_PROTECTED;
+int lexer_get_token(char ** tok, int * tok_size) XINE_PROTECTED;
char *lexer_decode_entities (const char *tok) XINE_PROTECTED;
#endif