trpld.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 158 行
C
158 行
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
* DESCRIBE IT HERE!
*
****************************************************************************/
#include <stdio.h>
#include <windows.h>
#include <stdarg.h>
#include <string.h>
#include <stdlib.h>
#include <stddef.h>
#include "trpimp.h"
#include "tcerr.h"
static trap_version (TRAPENTRY*InitFunc)();
static void (TRAPENTRY*FiniFunc)();
void (TRAPENTRY*HookFunc)();
void (TRAPENTRY*InfoFunction)();
void (TRAPENTRY*UnLockInput)();
void (TRAPENTRY*SetHardMode)();
static int (TRAPENTRY*HardModeCheck)();
static int (TRAPENTRY*GetHwndFunc)();
extern trap_version TrapVer;
extern unsigned (TRAPENTRY*ReqFunc)( unsigned, mx_entry *,
unsigned, mx_entry * );
static HINSTANCE dll;
int HardModeRequired;
HINSTANCE toolhelp;
void KillTrap( void )
{
ReqFunc = NULL;
HookFunc = NULL;
FiniFunc();
InitFunc = NULL;
FiniFunc = NULL;
InfoFunction = NULL;
HardModeCheck = NULL;
SetHardMode = NULL;
UnLockInput = NULL;
GetHwndFunc = NULL;
FreeLibrary( dll );
if( (UINT)toolhelp > 32 ) FreeLibrary( toolhelp );
}
char *LoadTrap( char *trapbuff, char *buff, trap_version *trap_ver )
{
char trpfile[256];
char *ptr;
char *parm;
char *dst;
bool have_ext;
char chr;
UINT prev;
if( trapbuff == NULL ) trapbuff = "std";
have_ext = FALSE;
ptr = trapbuff;
dst = (char *)trpfile;
for( ;; ) {
chr = *ptr;
if( chr == '\0' || chr == ';' ) break;
switch( chr ) {
case ':':
case '/':
case '\\':
have_ext = FALSE;
break;
case '.':
have_ext = TRUE;
break;
}
*dst++ = chr;
++ptr;
}
if( !have_ext ) {
*dst++ = '.';
*dst++ = 'd';
*dst++ = 'l';
*dst++ = 'l';
}
*dst = '\0';
parm = (*ptr != '\0') ? ptr + 1 : ptr;
/*
* load toolhelp since windows can't seem to handle having a static
* reference to a dll inside a dynamically loaded dll
*/
toolhelp = LoadLibrary( "toolhelp.dll" );
prev = SetErrorMode( SEM_NOOPENFILEERRORBOX );
dll = LoadLibrary( trpfile );
SetErrorMode( prev );
if( (UINT)dll < 32 ) {
sprintf( buff, TC_ERR_CANT_LOAD_TRAP, trpfile );
return( buff );
}
InitFunc = (trap_version(TRAPENTRY*)()) GetProcAddress( dll, (LPSTR)2 );
FiniFunc = (void(TRAPENTRY*)()) GetProcAddress( dll, (LPSTR)3 );
ReqFunc = (unsigned (TRAPENTRY*)(unsigned,mx_entry*,unsigned,mx_entry*)) GetProcAddress( dll, (LPSTR)4 );
HookFunc = (void(TRAPENTRY*)()) GetProcAddress( dll, (LPSTR)5 );
InfoFunction = (void(TRAPENTRY*)()) GetProcAddress( dll, (LPSTR)6 );
HardModeCheck = (int(TRAPENTRY*)()) GetProcAddress( dll, (LPSTR)7 );
SetHardMode = (void(TRAPENTRY*)()) GetProcAddress( dll, (LPSTR)12 );
UnLockInput = (void(TRAPENTRY*)()) GetProcAddress( dll, (LPSTR)13 );
GetHwndFunc = (int(TRAPENTRY*)()) GetProcAddress( dll, (LPSTR)8 );
strcpy( buff, TC_ERR_WRONG_TRAP_VERSION );
if( InitFunc == NULL || FiniFunc == NULL || ReqFunc == NULL ||
HookFunc == NULL || GetHwndFunc == NULL ||
SetHardMode == NULL || UnLockInput == NULL ) {
return( buff );
}
*trap_ver = InitFunc( parm, trpfile, trap_ver->remote );
if( trpfile[0] != '\0' ) {
strcpy( buff, (char *)trpfile );
return( buff );
}
if( !TrapVersionOK( *trap_ver ) ) {
KillTrap();
return( buff );
}
TrapVer = *trap_ver;
return( NULL );
}
void DoHardModeCheck( void )
{
HardModeRequired = HardModeCheck();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?