Diff for /np2/win9x/debuguty/viewer.h between versions 1.3 and 1.4

version 1.3, 2005/02/04 05:32:25 version 1.4, 2005/02/09 20:11:36
Line 1 Line 1
 #define NP2VIEW_MAX     8  #define NP2VIEW_MAX     8
   
 typedef struct {  typedef struct {
         BYTE    vram;          UINT8   vram;
         BYTE    itf;          UINT8   itf;
         BYTE    A20;          UINT8   A20;
 } VIEWMEM_T;  } VIEWMEM_T;
   
 enum {  enum {
Line 40  typedef struct { Line 40  typedef struct {
         DWORD           maxline;          DWORD           maxline;
         WORD            step;          WORD            step;
         WORD            mul;          WORD            mul;
         BYTE            alive;          UINT8           alive;
         BYTE            type;          UINT8           type;
         BYTE            lock;          UINT8           lock;
         BYTE            active;          UINT8           active;
         WORD            seg;          UINT16          seg;
         WORD            off;          UINT16          off;
         VIEWMEM_T       dmem;          VIEWMEM_T       dmem;
         SCROLLINFO      si;          SCROLLINFO      si;
 } NP2VIEW_T;  } NP2VIEW_T;
   
 extern  const char      np2viewfont[];  extern  const OEMCHAR   np2viewfont[];
 extern  NP2VIEW_T       np2view[NP2VIEW_MAX];  extern  NP2VIEW_T               np2view[NP2VIEW_MAX];
   
   
 BOOL viewer_init(HINSTANCE hPreInst);  BOOL viewer_init(HINSTANCE hPreInst);

Removed from v.1.3  
changed lines
  Added in v.1.4


RetroPC.NET-CVS <cvs@retropc.net>