mirror of
https://github.com/reactos/wine.git
synced 2025-02-02 10:12:01 +00:00
kernel32: Make some functions static.
This commit is contained in:
parent
52b4c7f26d
commit
0f305929bc
@ -895,7 +895,7 @@ LONG CALLBACK INSTR_vectored_handler( EXCEPTION_POINTERS *ptrs )
|
||||
/***********************************************************************
|
||||
* INSTR_CallBuiltinHandler
|
||||
*/
|
||||
void INSTR_CallBuiltinHandler( CONTEXT86 *context, BYTE intnum )
|
||||
static void INSTR_CallBuiltinHandler( CONTEXT86 *context, BYTE intnum )
|
||||
{
|
||||
if (!winedos.CallBuiltinHandler) load_winedos();
|
||||
if (winedos.CallBuiltinHandler) winedos.CallBuiltinHandler( context, intnum );
|
||||
|
@ -80,7 +80,6 @@ extern DWORD FILE_name_WtoA( LPCWSTR src, INT srclen, LPSTR dest, INT destlen );
|
||||
|
||||
extern DWORD __wine_emulate_instruction( EXCEPTION_RECORD *rec, CONTEXT86 *context );
|
||||
extern LONG CALLBACK INSTR_vectored_handler( EXCEPTION_POINTERS *ptrs );
|
||||
extern void INSTR_CallBuiltinHandler( CONTEXT86 *context, BYTE intnum );
|
||||
|
||||
/* return values for MODULE_GetBinaryType */
|
||||
enum binary_type
|
||||
|
@ -42,8 +42,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(snoop);
|
||||
|
||||
#include "pshpack1.h"
|
||||
|
||||
void WINAPI SNOOP16_Entry(FARPROC proc, LPBYTE args, CONTEXT86 *context);
|
||||
void WINAPI SNOOP16_Return(FARPROC proc, LPBYTE args, CONTEXT86 *context);
|
||||
static void WINAPI SNOOP16_Entry(FARPROC proc, LPBYTE args, CONTEXT86 *context);
|
||||
static void WINAPI SNOOP16_Return(FARPROC proc, LPBYTE args, CONTEXT86 *context);
|
||||
|
||||
typedef struct tagSNOOP16_FUN {
|
||||
/* code part */
|
||||
@ -241,7 +241,7 @@ SNOOP16_GetProcAddress16(HMODULE16 hmod,DWORD ordinal,FARPROC16 origfun) {
|
||||
}
|
||||
|
||||
#define CALLER1REF (*(DWORD*)(MapSL( MAKESEGPTR(context->SegSs,LOWORD(context->Esp)+4))))
|
||||
void WINAPI SNOOP16_Entry(FARPROC proc, LPBYTE args, CONTEXT86 *context) {
|
||||
static void WINAPI SNOOP16_Entry(FARPROC proc, LPBYTE args, CONTEXT86 *context) {
|
||||
DWORD ordinal=0;
|
||||
DWORD entry=(DWORD)MapSL( MAKESEGPTR(context->SegCs,LOWORD(context->Eip)) )-5;
|
||||
WORD xcs = context->SegCs;
|
||||
@ -308,7 +308,7 @@ void WINAPI SNOOP16_Entry(FARPROC proc, LPBYTE args, CONTEXT86 *context) {
|
||||
DPRINTF(") ret=%04x:%04x\n",HIWORD(ret->origreturn),LOWORD(ret->origreturn));
|
||||
}
|
||||
|
||||
void WINAPI SNOOP16_Return(FARPROC proc, LPBYTE args, CONTEXT86 *context) {
|
||||
static void WINAPI SNOOP16_Return(FARPROC proc, LPBYTE args, CONTEXT86 *context) {
|
||||
SNOOP16_RETURNENTRY *ret = (SNOOP16_RETURNENTRY*)((char *) MapSL( MAKESEGPTR(context->SegCs,LOWORD(context->Eip)) )-5);
|
||||
|
||||
/* We haven't found out the nrofargs yet. If we called a cdecl
|
||||
|
Loading…
x
Reference in New Issue
Block a user