📄 stubs.c
字号:
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the license visit http://go.microsoft.com/fwlink/?LinkId=3223.
//
/*
* NK Kernel stubs code
*
*
* Module Name:
*
* stubs.c
*
* Abstract:
*
* This file implements stubs/duplicates for functions in CoreDll
*
*/
/* Copies of functions in CoreDll which are needed here because they're needed
to load CoreDll, but also need to be user-callable without trapping (thus they
are also in CoreDll). */
#include "kernel.h"
HANDLE hCoreDll;
/* -------------------- functions chained to DLL ------------------- */
typedef HLOCAL (* LA_t)(UINT, UINT);
//------------------------------------------------------------------------------
// Win32 LocalAlloc call
//------------------------------------------------------------------------------
#undef LocalAlloc
HLOCAL WINAPI
LocalAlloc(
UINT uFlags,
UINT uBytes
)
{
static LA_t LAf = 0;
if (!hCoreDll || (!LAf && !(LAf = (LA_t)GetProcAddressA(hCoreDll,"LocalAlloc"))))
return FALSE;
return LAf(uFlags,uBytes);
}
typedef HLOCAL (* LF_t)(HLOCAL);
// Win32 CreateProcess call
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
#undef LocalFree
HLOCAL WINAPI
LocalFree(
HLOCAL hMem
)
{
static LF_t LFf = 0;
if (!hCoreDll || (!LFf && !(LFf = (LF_t)GetProcAddressA(hCoreDll,"LocalFree"))))
return FALSE;
return LFf(hMem);
}
/* -------------------- functions duplicated from DLL ------------------- */
#ifdef DEBUG
#define DOCHECKCS
#endif
#include "..\..\core\dll\cscode.c"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -