]> git.sesse.net Git - vlc/blobdiff - src/video_output/video_text.h
. rajout de l'option -Winline
[vlc] / src / video_output / video_text.h
index cc60e935730e4e4a7a32ffbfef51ea1810942416..a0f7db8890a2bcb7b16f99368389b3ac05fb96ef 100644 (file)
@@ -1,15 +1,32 @@
 /*****************************************************************************
  * video_text.h : text manipulation functions
- * (c)1999 VideoLAN
+ *****************************************************************************
+ * Copyright (C) 1999, 2000 VideoLAN
+ *
+ * Authors:
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  *****************************************************************************/
 
 /* Text styles - these are primary text styles, used by the vout_Print function.
  * They may be ignored or interpreted by higher level functions */
-#define WIDE_TEXT                       1         /* interspacing is doubled */
-#define ITALIC_TEXT                     2                          /* italic */
-#define OPAQUE_TEXT                     4            /* text with background */
-#define OUTLINED_TEXT                   8           /* border around letters */
-#define VOID_TEXT                      16                   /* no foreground */
+#define WIDE_TEXT                    1<<0         /* interspacing is doubled */
+#define ITALIC_TEXT                  1<<1                          /* italic */
+#define OPAQUE_TEXT                  1<<2            /* text with background */
+#define OUTLINED_TEXT                1<<3           /* border around letters */
+#define VOID_TEXT                    1<<4                   /* no foreground */
 
 
 /*****************************************************************************