]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/freetype-error.cc
Web-ja: update introduction
[lilypond.git] / lily / freetype-error.cc
index 1f4dc468181fce0063a4a883fe511cd4696ae005..8846b4d0419b39fff1849a2a9f9b4900287eedf0 100644 (file)
@@ -1,8 +1,8 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2007--2010 Han-Wen Nienhuys <hanwen@lilypond.org>
-  
+  Copyright (C) 2007--2015 Han-Wen Nienhuys <hanwen@lilypond.org>
+
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
 
 #include "freetype.hh"
 
-#undef __FTERRORS_H__                                           
-#define FT_ERRORDEF(e, v, s)  { e, s },                       
-#define FT_ERROR_START_LIST     {                               
-#define FT_ERROR_END_LIST       { 0, 0 } };                     
-                                                                         
+#undef __FTERRORS_H__
+#define FT_ERRORDEF(e, v, s)  { e, s },
+#define FT_ERROR_START_LIST     {
+#define FT_ERROR_END_LIST       { 0, 0 } };
+
 const struct Freetype_error_message
-{                                                               
-  int          err_code;                                        
-  const char*  err_msg;
-} ft_errors[] =                                                 
-                                                                         
-#include <freetype/fterrors.h>
+{
+  FT_Error err_code;
+  const char *err_msg;
+} ft_errors[] =
 
-  ;
+#include FT_ERRORS_H
 
+  ;
 
 #include <string>
 
 string
-freetype_error_string (int code)
+freetype_error_string (FT_Error code)
 {
   for (Freetype_error_message const *p = ft_errors;
-       p->err_msg; p ++)
+       p->err_msg; p++)
     {
       if (p->err_code == code)
-       return p->err_msg;
+        return p->err_msg;
     }
 
-  return "<unknown error>"; 
+  return "<unknown error>";
 }
-  
+