~z88dk-team/z88dk-pkg/trunk

« back to all changes in this revision

Viewing changes to include/zxinterface1.h

  • Committer: Bazaar Package Importer
  • Author(s): Krystian Wlosek, Krystian Wlosek
  • Date: 2008-03-25 11:46:11 UTC
  • mfrom: (1.1.2 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080325114611-u89smn2ccknl8avt
Tags: 1.8.ds1-2
[ Krystian Wlosek ]
* Enable 64bit architecture.
* Added '-m32' switch to CFLAGS and LDFLAGS for 64bit machines.
* Changed Architecture: to `any' in z88dk and z88dk-bin package.
* Added gcc-multilib to Build-Depends: for 64bit
* Fixed problem with x11.lib
  - created symlink from include/x11 to include/X11
  - improved Makefile for x11.lib
    patch debian/patches/03_libsrc_graphics_x11_Makefile.diff
* Fixed library ozansi.lib
  - patch debian/patches/03_libsrc_oz_ozinput_Makefile.diff
* Changed Copyright notice.
* Fixed gcc warnings:
  - in src/appmake dir - debian/patches/04_src_appmake.diff
  - in src/zcc/zcc.c - debian/patches/04_src_zcc_zcc.c.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *
4
4
 *      Stefano Bodrato - 6/9/2004
5
5
 *
6
 
 *      $Id: zxinterface1.h,v 1.6 2007/07/10 08:12:50 stefano Exp $
 
6
 *      $Id: zxinterface1.h,v 1.8 2008/02/07 11:18:03 stefano Exp $
7
7
 */
8
8
 
9
9
 
14
14
#include <fcntl.h>
15
15
 
16
16
 
 
17
#ifndef __ZX_CHANNELS__
 
18
#define __ZX_CHANNELS__
 
19
 
17
20
struct BASE_CHAN {
18
21
        // base channel descriptor
19
22
        u16_t   errptr1;        /* first pointer to main ERROR-1     */
86
89
        char    data[255];      /* 255 byte data buffer */
87
90
};
88
91
 
 
92
#endif /*__ZX_CHANNELS__*/
 
93
 
89
94
 
90
95
// Load a sector identified by file name and record number
91
96
extern int __LIB__ if1_load_record (int drive, char *filename, int record, struct M_CHAN buffer);