mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
- Add sti.dll from Wine
svn path=/trunk/; revision=39656
This commit is contained in:
parent
beab8fa0dc
commit
10d8c3ec04
7 changed files with 77 additions and 0 deletions
|
@ -119,12 +119,14 @@
|
|||
<property name="BASEADDRESS_MSDMO" value="0x73670000" />
|
||||
<property name="BASEADDRESS_AVIFIL32" value="0x73ac0000" />
|
||||
<property name="BASEADDRESS_DCIMAN32" value="0x73b10000" />
|
||||
<property name="BASEADDRESS_STI" value="0x73b60000" />
|
||||
<property name="BASEADDRESS_LZ32" value="0x73d80000" />
|
||||
<property name="BASEADDRESS_COREDLL" value="0x73d80000" />
|
||||
<property name="BASEADDRESS_KSUSER" value="0x73ea0000" />
|
||||
<property name="BASEADDRESS_ICMP" value="0x741f0000" />
|
||||
<property name="BASEADDRESS_SPOOLSS" value="0x742a0000" />
|
||||
<property name="BASEADDRESS_MSIMTF" value="0x746b0000" />
|
||||
<property name="BASEADDRESS_MSCTF" value="0x746e0000" />
|
||||
<property name="BASEADDRESS_QUARTZ" value="0x747d0000" />
|
||||
<property name="BASEADDRESS_USERENV" value="0x74850000" />
|
||||
<property name="BASEADDRESS_WS2_32" value="0x74aa0000" />
|
||||
|
|
|
@ -370,6 +370,7 @@ dll\win32\spoolss\spoolss.dll 1
|
|||
dll\win32\srclient\srclient.dll 1
|
||||
dll\win32\stdole2.tlb\stdole2.tlb 1
|
||||
dll\win32\stdole32.tlb\stdole32.tlb 1
|
||||
dll\win32\sti\sti.dll 1
|
||||
dll\win32\sxs\sxs.dll 1
|
||||
dll\win32\syssetup\syssetup.dll 1
|
||||
dll\win32\tapi32\tapi32.dll 1
|
||||
|
|
15
reactos/dll/win32/sti/sti.rbuild
Normal file
15
reactos/dll/win32/sti/sti.rbuild
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
|
||||
<group>
|
||||
<module name="sti" type="win32dll" baseaddress="${BASEADDRESS_STI}" installbase="system32" installname="sti.dll" allowwarnings="true" entrypoint="0">
|
||||
<!--autoregister infsection="OleControlDlls" type="DllRegisterServer" /-->
|
||||
<importlibrary definition="sti.spec" />
|
||||
<include base="sti">.</include>
|
||||
<include base="ReactOS">include/reactos/wine</include>
|
||||
<define name="__WINESRC__" />
|
||||
<file>sti_main.c</file>
|
||||
<library>wine</library>
|
||||
<library>kernel32</library>
|
||||
<library>ntdll</library>
|
||||
</module>
|
||||
</group>
|
7
reactos/dll/win32/sti/sti.spec
Normal file
7
reactos/dll/win32/sti/sti.spec
Normal file
|
@ -0,0 +1,7 @@
|
|||
@ stub DllCanUnloadNow
|
||||
@ stub DllGetClassObject
|
||||
@ stub DllRegisterServer
|
||||
@ stub DllUnregisterServer
|
||||
@ stdcall StiCreateInstance(ptr long ptr ptr)
|
||||
@ stdcall StiCreateInstanceA(ptr long ptr ptr)
|
||||
@ stdcall StiCreateInstanceW(ptr long ptr ptr)
|
48
reactos/dll/win32/sti/sti_main.c
Normal file
48
reactos/dll/win32/sti/sti_main.c
Normal file
|
@ -0,0 +1,48 @@
|
|||
/*
|
||||
* Copyright (C) 2002 Aric Stewart for CodeWeavers
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winreg.h"
|
||||
#include "winerror.h"
|
||||
|
||||
/******************************************************************************
|
||||
* StiCreateInstance (STI.@)
|
||||
*/
|
||||
HRESULT WINAPI StiCreateInstance( HINSTANCE a, DWORD b, LPVOID c, LPVOID d)
|
||||
{
|
||||
return STG_E_UNIMPLEMENTEDFUNCTION;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* StiCreateInstanceA (STI.@)
|
||||
*/
|
||||
HRESULT WINAPI StiCreateInstanceA( HINSTANCE a, DWORD b, LPVOID c, LPVOID d)
|
||||
{
|
||||
return STG_E_UNIMPLEMENTEDFUNCTION;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* StiCreateInstanceW (STI.@)
|
||||
*/
|
||||
HRESULT WINAPI StiCreateInstanceW( HINSTANCE a, DWORD b, LPVOID c, LPVOID d)
|
||||
{
|
||||
return STG_E_UNIMPLEMENTEDFUNCTION;
|
||||
}
|
|
@ -412,6 +412,9 @@
|
|||
<directory name="stdole32.tlb">
|
||||
<xi:include href="stdole32.tlb/stdole32.rbuild" />
|
||||
</directory>
|
||||
<directory name="sti">
|
||||
<xi:include href="sti/sti.rbuild" />
|
||||
</directory>
|
||||
<directory name="sxs">
|
||||
<xi:include href="sxs/sxs.rbuild" />
|
||||
</directory>
|
||||
|
|
|
@ -108,6 +108,7 @@ reactos/dll/win32/shfolder # Autosync
|
|||
reactos/dll/win32/shlwapi # Autosync
|
||||
reactos/dll/win32/spoolss # Autosync
|
||||
reactos/dll/win32/stdole2.tlb # Autosync
|
||||
reactos/dll/win32/sti # Autosync
|
||||
reactos/dll/win32/sxs # Autosync
|
||||
reactos/dll/win32/tapi32 # Autosync
|
||||
reactos/dll/win32/twain_32 # Out of sync
|
||||
|
|
Loading…
Reference in a new issue