mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
7cbe65725a
Thu Jan 5 13:37:42 1995 Cameron Heide (heide@ee.ualberta.ca) * [memory/global.c] GlobalCompact should now return the correct value when the largest run of free blocks includes the last block. * [windows/mdi.c] Tiling and cascading windows without any MDI children should no longer crash (assuming no-op is the correct thing to do). Sun Jan 1 23:30:25 1995 Fons Botman <botman@rabo.nl> * [objects/font.c] GetTextExtentPoint: fixed debug output, str is counted string, not zero terminated. * [if1632/relay.c] DLLRelay: when debugging_stack got segv, added upper bound for stack dump.
30 lines
1.2 KiB
C
30 lines
1.2 KiB
C
#ifndef __WINE_MISCEMU_H
|
|
#define __WINE_MISCEMU_H
|
|
|
|
extern int do_int10(struct sigcontext_struct *);
|
|
extern int do_int13(struct sigcontext_struct *);
|
|
extern int do_int15(struct sigcontext_struct *);
|
|
extern int do_int16(struct sigcontext_struct *);
|
|
extern int do_int1a(struct sigcontext_struct *);
|
|
extern int do_int21(struct sigcontext_struct *);
|
|
extern int do_int25(struct sigcontext_struct *);
|
|
extern int do_int26(struct sigcontext_struct *);
|
|
extern int do_int2a(struct sigcontext_struct *);
|
|
extern int do_int2f(struct sigcontext_struct *);
|
|
extern int do_int31(struct sigcontext_struct *);
|
|
|
|
extern void inportb(struct sigcontext_struct *context);
|
|
extern void inport(struct sigcontext_struct *context);
|
|
extern void outportb(struct sigcontext_struct *context);
|
|
extern void outport(struct sigcontext_struct *context);
|
|
extern void inportb_abs(struct sigcontext_struct *context);
|
|
extern void inport_abs(struct sigcontext_struct *context);
|
|
extern void outportb_abs(struct sigcontext_struct *context);
|
|
extern void outport_abs(struct sigcontext_struct *context);
|
|
|
|
extern void IntBarf(int i, struct sigcontext_struct *context);
|
|
|
|
extern void INT21_Init(void);
|
|
|
|
#endif /* __WINE_MISCEMU_H */
|