mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
f0cbfa0c5c
Sat Feb 15 11:59:17 1997 Alexandre Julliard <julliard@lrc.epfl.ch> * [*/*] Converted a lot of functions to Win32 types. Removed HWND type. Fri Feb 14 15:09:19 1997 Onno Hovers <onno@stack.nl> * [memory/global.c] Implemented GMEM_MOVEABLE blocks for Win32. Fri Feb 14 00:24:39 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu> * [loader/task.c] [windows/queue.c] Do not read X events while in the intertask SendMessage(). * [misc/lstr.c] Fixed CharPrev32A(). * [windows/hook.c] [include/hook.h] Restored broken WH_CALLWNDPROC functionality for dialogs, etc... * [windows/win.c] [windows/defwnd.c] [windows/mdi.c] [windows/event.c] [controls/edit.c] Added WIN_ISWIN32 flag to windows created by Win32 calls. Several new Win32 messages are sent when this flag is on. * [msdos/dosmem.c] [memory/global.c] Some changes in DOS memory allocation. Fri Feb 7 21:46:03 1997 Andrew Taylor <andrew@riscan.com> * [win32/security.c] Added SID manipulation functions. * [include/debug.h] Added debugging class "security". Fri Feb 7 20:46:33 1997 Robert Pouliot <krynos@clic.net> * [debugger/msc.c] [debugger/source.c] [documentation/wine_os2.txt] [loader/signal.c] Some more changes for OS/2. Doesn't work yet. Fri Feb 7 09:31:17 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [scheduler/process.c] Added ExpandEnvironmentStrings*. * [misc/ntdll.c] [include/ntdll.h] Added some new functions. * [objects/cursoricon.c] CURSORICON_LoadHandler: check against some bizarre out of memory conditions. * [windows/mdi.c] Fixed DefFrameProc32*, added TranslateMDISysAccel32. Wed Feb 5 01:31:05 1997 John Zero <john@globe.graphisoft.hu> * [resources/sysres_Hu.rc] [misc/ole2nls.c] [misc/main.c] [programs/progman/Hu.rc] [programs/winhelp/Hu.rc] Added Hungarian language support.
50 lines
1.6 KiB
C
50 lines
1.6 KiB
C
/*
|
|
* Misc. emulation definitions
|
|
*
|
|
* Copyright 1995 Alexandre Julliard
|
|
*/
|
|
|
|
#ifndef __WINE_MISCEMU_H
|
|
#define __WINE_MISCEMU_H
|
|
|
|
#include <stdio.h>
|
|
#include "winnt.h"
|
|
|
|
/* miscemu/dosmem.c */
|
|
extern HANDLE16 DOSMEM_BiosSeg;
|
|
extern DWORD DOSMEM_CollateTable;
|
|
|
|
extern BOOL32 DOSMEM_Init(void);
|
|
extern void DOSMEM_InitExports(HMODULE16);
|
|
extern void DOSMEM_Tick(void);
|
|
extern WORD DOSMEM_AllocSelector(WORD);
|
|
extern LPVOID DOSMEM_GetBlock(UINT32 size, UINT16* p);
|
|
extern BOOL32 DOSMEM_FreeBlock(void* ptr);
|
|
extern LPVOID DOSMEM_MapRealToLinear(DWORD); /* real-mode to linear */
|
|
extern LPVOID DOSMEM_MapDosToLinear(UINT32); /* linear DOS to Wine */
|
|
extern UINT32 DOSMEM_MapLinearToDos(LPVOID); /* linear Wine to DOS */
|
|
|
|
/* miscemu/interrupts.c */
|
|
extern BOOL32 INT_Init(void);
|
|
|
|
/* msdos/interrupts.c */
|
|
extern FARPROC16 INT_GetHandler( BYTE intnum );
|
|
extern void INT_SetHandler( BYTE intnum, FARPROC16 handler );
|
|
|
|
/* msdos/ioports.c */
|
|
extern DWORD IO_inport( int port, int count );
|
|
extern void IO_outport( int port, int count, DWORD value );
|
|
|
|
/* msdos/int1a.c */
|
|
extern DWORD INT1A_GetTicksSinceMidnight(void);
|
|
|
|
#define INT_BARF(context,num) \
|
|
fprintf( stderr, "int%x: unknown/not implemented parameters:\n" \
|
|
"int%x: AX %04x, BX %04x, CX %04x, DX %04x, " \
|
|
"SI %04x, DI %04x, DS %04x, ES %04x\n", \
|
|
(num), (num), AX_reg(context), BX_reg(context), CX_reg(context), \
|
|
DX_reg(context), SI_reg(context), DI_reg(context), \
|
|
(WORD)DS_reg(context), (WORD)ES_reg(context) )
|
|
|
|
#endif /* __WINE_MISCEMU_H */
|