[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ft-devel] Re: Compilation problem with sample FTDUMP.c on FreeType V2.2
From: |
Werner LEMBERG |
Subject: |
[ft-devel] Re: Compilation problem with sample FTDUMP.c on FreeType V2.2.1 |
Date: |
Sun, 21 May 2006 20:55:41 +0200 (CEST) |
> I used your FreeType since V2.0, but I got compilation problem with
> your latest release V2.2.1, I generated LIBs with VC 6.0 without any
> problem, but I got following error messages with your demo program
> FTDUMP:
>
> F:\freetype-2.2.1-demo\test\ftdump.c(107) : error C2065:
> 'FT_ModuleRec' : undeclared identifier
You've found a bug. Below is a fix which is now in the CVS. Thanks
for the report.
Werner
======================================================================
--- ftdump.c.old 2006-05-07 06:28:13.000000000 +0200
+++ ftdump.c 2006-05-21 20:52:53.000000000 +0200
@@ -104,7 +104,7 @@
void
Print_Type( FT_Face face )
{
- FT_ModuleRec* module;
+ FT_Module module;
printf( "font type entries\n" );
- [ft-devel] Re: Compilation problem with sample FTDUMP.c on FreeType V2.2.1,
Werner LEMBERG <=