You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
1.5 KiB
92 lines
1.5 KiB
// --------------------------------------------------------------------------
|
|
//
|
|
// ASTHKLS.THK
|
|
//
|
|
// Win95-32 bit App Sharing
|
|
// Thunks from 32-bit NMAS.DLL to 16-bit NMASWIN.DLL
|
|
//
|
|
// Copyright(c) Microsoft 1996-
|
|
//
|
|
// --------------------------------------------------------------------------
|
|
|
|
__foldwin32sstuff __foldwin32sstuff;
|
|
foldstyleinitialization = true;
|
|
enablemapdirect3216 = true;
|
|
flatthunks = true;
|
|
|
|
#include "..\thk\aswin.typ"
|
|
|
|
//
|
|
// NOTE:
|
|
// In thunk scripts, all pointers are implicitly FAR
|
|
//
|
|
|
|
void OSILoad16(DWORD * phInstance)
|
|
{
|
|
}
|
|
|
|
|
|
BOOL OSIInit16(DWORD version, HWND hwnd, ATOM atom, DWORD * ppShared,
|
|
DWORD * ppoaShared, DWORD * pimShared, DWORD * psbcEnabled,
|
|
DWORD * psbcShunt, DWORD * pBitmasks)
|
|
{
|
|
}
|
|
|
|
|
|
void OSITerm16(BOOL fUnloading)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
BOOL OSIFunctionRequest16(DWORD escape, void* lpvEsc, DWORD cbEsc)
|
|
{
|
|
}
|
|
|
|
|
|
BOOL OSIStartWindowTracking16(void)
|
|
{
|
|
}
|
|
|
|
|
|
void OSIStopWindowTracking16(void)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
BOOL OSIShareWindow16(HWND hwnd, UINT uType, BOOL fRedraw, BOOL fUpdate)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
BOOL OSIUnshareWindow16(HWND hwnd, BOOL fUpdateCount)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
BOOL OSIIsWindowScreenSaver16(HWND hwnd)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
BOOL OSIInstallControlledHooks16(BOOL fInstall, BOOL fDesktop)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
void OSIInjectMouseEvent16(UINT, int, int, UINT, DWORD)
|
|
{
|
|
}
|
|
|
|
|
|
void OSIInjectKeyboardEvent16(UINT, WORD, WORD, DWORD)
|
|
{
|
|
}
|
|
|
|
|
|
|