Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
e9252251
Commit
e9252251
authored
Jul 31, 2007
by
John Klehm
Committed by
Alexandre Julliard
Aug 03, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inkobj: Add stub implementation of inkobj dll.
parent
fe7ae958
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
107 additions
and
0 deletions
+107
-0
Makefile.in
Makefile.in
+2
-0
configure
configure
+3
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/Makefile.in
+1
-0
Makefile.in
dlls/inkobj/Makefile.in
+13
-0
inkobj.c
dlls/inkobj/inkobj.c
+83
-0
inkobj.spec
dlls/inkobj/inkobj.spec
+4
-0
No files found.
Makefile.in
View file @
e9252251
...
...
@@ -253,6 +253,7 @@ ALL_MAKEFILES = \
dlls/imm32/Makefile
\
dlls/infosoft/Makefile
\
dlls/infosoft/tests/Makefile
\
dlls/inkobj/Makefile
\
dlls/inseng/Makefile
\
dlls/iphlpapi/Makefile
\
dlls/iphlpapi/tests/Makefile
\
...
...
@@ -617,6 +618,7 @@ dlls/imagehlp/Makefile: dlls/imagehlp/Makefile.in dlls/Makedll.rules
dlls/imm32/Makefile
:
dlls/imm32/Makefile.in dlls/Makedll.rules
dlls/infosoft/Makefile
:
dlls/infosoft/Makefile.in dlls/Makedll.rules
dlls/infosoft/tests/Makefile
:
dlls/infosoft/tests/Makefile.in dlls/Maketest.rules
dlls/inkobj/Makefile
:
dlls/inkobj/Makefile.in dlls/Makedll.rules
dlls/inseng/Makefile
:
dlls/inseng/Makefile.in dlls/Makedll.rules
dlls/iphlpapi/Makefile
:
dlls/iphlpapi/Makefile.in dlls/Makedll.rules
dlls/iphlpapi/tests/Makefile
:
dlls/iphlpapi/tests/Makefile.in dlls/Maketest.rules
...
...
configure
View file @
e9252251
...
...
@@ -20456,6 +20456,8 @@ ac_config_files="$ac_config_files dlls/infosoft/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/infosoft/tests/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/inkobj/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/inseng/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/iphlpapi/Makefile"
...
...
@@ -21625,6 +21627,7 @@ do
"dlls/imm32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/imm32/Makefile" ;;
"dlls/infosoft/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/infosoft/Makefile" ;;
"dlls/infosoft/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/infosoft/tests/Makefile" ;;
"dlls/inkobj/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/inkobj/Makefile" ;;
"dlls/inseng/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/inseng/Makefile" ;;
"dlls/iphlpapi/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/iphlpapi/Makefile" ;;
"dlls/iphlpapi/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/iphlpapi/tests/Makefile" ;;
...
...
configure.ac
View file @
e9252251
...
...
@@ -1654,6 +1654,7 @@ AC_CONFIG_FILES([dlls/imagehlp/Makefile])
AC_CONFIG_FILES([dlls/imm32/Makefile])
AC_CONFIG_FILES([dlls/infosoft/Makefile])
AC_CONFIG_FILES([dlls/infosoft/tests/Makefile])
AC_CONFIG_FILES([dlls/inkobj/Makefile])
AC_CONFIG_FILES([dlls/inseng/Makefile])
AC_CONFIG_FILES([dlls/iphlpapi/Makefile])
AC_CONFIG_FILES([dlls/iphlpapi/tests/Makefile])
...
...
dlls/Makefile.in
View file @
e9252251
...
...
@@ -88,6 +88,7 @@ BASEDIRS = \
imagehlp
\
imm32
\
infosoft
\
inkobj
\
inseng
\
iphlpapi
\
itss
\
...
...
dlls/inkobj/Makefile.in
0 → 100644
View file @
e9252251
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
inkobj.dll
IMPORTS
=
kernel32
C_SRCS
=
\
inkobj.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/inkobj/inkobj.c
0 → 100644
View file @
e9252251
/* Copyright (C) 2007 C John Klehm
*
* 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 "winerror.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
inkobj
);
static
LONG
INKOBJ_refCount
;
static
HINSTANCE
INKOBJ_hInstance
;
/*****************************************************
* DllMain (INKOBJ.init)
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
reason
,
LPVOID
reserved
)
{
TRACE
(
"(%p, %d, %p)
\n
"
,
hinst
,
reason
,
reserved
);
switch
(
reason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
break
;
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hinst
);
INKOBJ_hInstance
=
hinst
;
break
;
}
return
TRUE
;
}
/*****************************************************
* DllCanUnloadNow (INKOBJ.@)
*/
HRESULT
WINAPI
DllCanUnloadNow
(
void
)
{
return
(
INKOBJ_refCount
!=
0
)
?
S_FALSE
:
S_OK
;
}
/*****************************************************
* DllGetClassObject [INKOBJ.@]
*/
HRESULT
WINAPI
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
)
{
FIXME
(
"Not implemented. Requested class was:%s
\n
"
,
debugstr_guid
(
rclsid
));
return
CLASS_E_CLASSNOTAVAILABLE
;
}
/*****************************************************
* DllRegisterServer (INKOBJ.@)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
FIXME
(
"Not implemented.
\n
"
);
return
E_UNEXPECTED
;
/* unable to register */
}
/*****************************************************
* DllUnregisterServer (INKOBJ.@)
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
FIXME
(
"Not implemented.
\n
"
);
return
E_UNEXPECTED
;
/* unable to register */
}
dlls/inkobj/inkobj.spec
0 → 100644
View file @
e9252251
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr)
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment