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
efc319bf
Commit
efc319bf
authored
Dec 22, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hhctrl.ocx: Add a typelib and register it.
parent
e11f65f6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
135 additions
and
3 deletions
+135
-3
.gitignore
.gitignore
+1
-0
Makefile.in
dlls/hhctrl.ocx/Makefile.in
+4
-2
hhctrl.c
dlls/hhctrl.ocx/hhctrl.c
+28
-0
hhctrl_tlb.idl
dlls/hhctrl.ocx/hhctrl_tlb.idl
+98
-0
regsvr.c
dlls/hhctrl.ocx/regsvr.c
+0
-0
rsrc.rc
dlls/hhctrl.ocx/rsrc.rc
+4
-1
No files found.
.gitignore
View file @
efc319bf
...
...
@@ -51,6 +51,7 @@ dlls/dispex/disp_ex.h
dlls/dispex/disp_ex_p.c
dlls/dxdiagn/fil_data.h
dlls/gameux/gameux_tlb.tlb
dlls/hhctrl.ocx/hhctrl_tlb.tlb
dlls/infosoft/infosoft.h
dlls/jscript/jscript_classes.h
dlls/jscript/jsglobal.tlb
...
...
dlls/hhctrl.ocx/Makefile.in
View file @
efc319bf
...
...
@@ -7,11 +7,13 @@ C_SRCS = \
help.c
\
hhctrl.c
\
index.c
\
regsvr.c
\
search.c
\
stream.c
\
webbrowser.c
IDL_TLB_SRCS
=
hhctrl_tlb.idl
IDL_R_SRCS
=
hhctrl_tlb.idl
RC_SRCS
=
\
Cs.rc
\
Da.rc
\
...
...
@@ -39,6 +41,6 @@ RC_SRCS = \
Tr.rc
\
Uk.rc
\
Zh.rc
\
version
.rc
rsrc
.rc
@MAKE_DLL_RULES@
dlls/hhctrl.ocx/hhctrl.c
View file @
efc319bf
...
...
@@ -21,6 +21,18 @@
#include "wine/debug.h"
#include <stdarg.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "winnls.h"
#include "htmlhelp.h"
#include "ole2.h"
#include "rpcproxy.h"
#define INIT_GUID
#include "hhctrl.h"
...
...
@@ -353,3 +365,19 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
FIXME
(
"(%s %s %p)
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
riid
),
ppv
);
return
CLASS_E_CLASSNOTAVAILABLE
;
}
/***********************************************************************
* DllRegisterServer (HHCTRL.OCX.@)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
return
__wine_register_resources
(
hhctrl_hinstance
,
NULL
);
}
/***********************************************************************
* DllUnregisterServer (HHCTRL.OCX.@)
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
return
__wine_unregister_resources
(
hhctrl_hinstance
,
NULL
);
}
dlls/hhctrl.ocx/hhctrl_tlb.idl
0 → 100644
View file @
efc319bf
/*
*
Typelib
for
hhctrl
*
*
Copyright
2010
Alexandre
Julliard
*
*
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
*/
import
"unknwn.idl"
;
import
"objidl.idl"
;
import
"oaidl.idl"
;
[
helpstring
(
"HHCtrl 4.0 Type Library"
),
version
(
4.0
),
uuid
(
adb880a2
-
d8ff
-
11
cf
-
9377
-
00
aa003b7a11
)
]
library
HHCTRLLib
{
importlib
(
"stdole2.tlb"
)
;
[
helpstring
(
"IHHCtrl Interface"
),
odl
,
dual
,
oleautomation
,
uuid
(
adb880a1
-
d8ff
-
11
cf
-
9377
-
00
aa003b7a11
)
]
interface
IHHCtrl
:
IDispatch
{
/*
FIXME
*/
}
[
helpstring
(
"Event interface for HHCtrl"
),
uuid
(
adb880a3
-
d8ff
-
11
cf
-
9377
-
00
aa003b7a11
)
]
dispinterface
_HHCtrlEvents
{
properties
:
methods
:
[
id
(
0
)
]
void
Click
(
BSTR
ParamString
)
;
}
[
helpstring
(
"HHCtrl Object"
),
progid
(
"Internet.HHCtrl.1"
),
vi_progid
(
"Internet.HHCtrl"
),
threading
(
apartment
),
version
(
1.0
),
uuid
(
adb880a6
-
d8ff
-
11
cf
-
9377
-
00
aa003b7a11
)
]
coclass
OldHHCtrl1
{
[
default
]
interface
IHHCtrl
;
[
default
,
source
]
dispinterface
_HHCtrlEvents
;
}
[
helpstring
(
"HHCtrl Object"
),
progid
(
"Internet.HHCtrl.1"
),
vi_progid
(
"Internet.HHCtrl"
),
threading
(
apartment
),
version
(
1.0
),
uuid
(
41b23
c28
-488e-4
e5c
-
ace2
-
bb0bbabe99e8
)
]
coclass
OldHHCtrl2
{
[
default
]
interface
IHHCtrl
;
[
default
,
source
]
dispinterface
_HHCtrlEvents
;
}
[
helpstring
(
"HHCtrl Object"
),
progid
(
"Internet.HHCtrl.1"
),
vi_progid
(
"Internet.HHCtrl"
),
threading
(
apartment
),
version
(
1.0
),
uuid
(
52
a2aaae
-085d-4187
-
97
ea
-
8
c30db990436
)
]
coclass
HHCtrl
{
[
default
]
interface
IHHCtrl
;
[
default
,
source
]
dispinterface
_HHCtrlEvents
;
}
}
dlls/hhctrl.ocx/regsvr.c
deleted
100644 → 0
View file @
e11f65f6
This diff is collapsed.
Click to expand it.
dlls/hhctrl.ocx/
version
.rc
→
dlls/hhctrl.ocx/
rsrc
.rc
View file @
efc319bf
/*
*
Version information
for hhctrl.ocx
*
Resources
for hhctrl.ocx
*
* Copyright 2004 Hans Leidekker
* Copyright 2004 Tom Wickline
...
...
@@ -19,6 +19,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
/* @makedep: hhctrl_tlb.tlb */
1 TYPELIB hhctrl_tlb.tlb
#define WINE_FILEDESCRIPTION_STR "Wine htmlhelp OCX"
#define WINE_FILENAME_STR "hhctrl.ocx"
#define WINE_FILEVERSION 5,2,3790,2744
...
...
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