Date: Wed, 4 Oct 1995 07:36:41 -0400 From: dj (DJ Delorie) To: nicolas AT JUPITER DOT saclay DOT cea DOT fr Cc: DJGPP AT SUN DOT SOE DOT CLARKSON DOT EDU > { char SystemFontName[21] PACKED; > int16 ScreenX,ScreenY PACKED; You need to packed both vars: { char SystemFontName[21] PACKED; int16 ScreenX PACKED, ScreenY PACKED;