84 lines
1.7 KiB
C
84 lines
1.7 KiB
C
/*
|
|
* TTYDRV initialization code
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "winbase.h"
|
|
#include "wine/winbase16.h"
|
|
#include "gdi.h"
|
|
#include "message.h"
|
|
#include "user.h"
|
|
#include "win.h"
|
|
#include "debugtools.h"
|
|
#include "ttydrv.h"
|
|
|
|
DEFAULT_DEBUG_CHANNEL(ttydrv);
|
|
|
|
int cell_width = 8;
|
|
int cell_height = 8;
|
|
int screen_rows = 50; /* default value */
|
|
int screen_cols = 80; /* default value */
|
|
WINDOW *root_window;
|
|
|
|
|
|
/***********************************************************************
|
|
* TTYDRV process initialisation routine
|
|
*/
|
|
static void process_attach(void)
|
|
{
|
|
WND_Driver = &TTYDRV_WND_Driver;
|
|
|
|
#ifdef WINE_CURSES
|
|
if ((root_window = initscr()))
|
|
{
|
|
werase(root_window);
|
|
wrefresh(root_window);
|
|
}
|
|
getmaxyx(root_window, screen_rows, screen_cols);
|
|
#endif /* WINE_CURSES */
|
|
|
|
TTYDRV_GDI_Initialize();
|
|
|
|
/* load display.dll */
|
|
LoadLibrary16( "display" );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* TTYDRV process termination routine
|
|
*/
|
|
static void process_detach(void)
|
|
{
|
|
TTYDRV_GDI_Finalize();
|
|
|
|
#ifdef WINE_CURSES
|
|
if (root_window) endwin();
|
|
#endif /* WINE_CURSES */
|
|
|
|
WND_Driver = NULL;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* TTYDRV initialisation routine
|
|
*/
|
|
BOOL WINAPI TTYDRV_Init( HINSTANCE hinst, DWORD reason, LPVOID reserved )
|
|
{
|
|
static int process_count;
|
|
|
|
switch(reason)
|
|
{
|
|
case DLL_PROCESS_ATTACH:
|
|
if (!process_count++) process_attach();
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
if (!--process_count) process_detach();
|
|
break;
|
|
}
|
|
return TRUE;
|
|
}
|