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
3b5e2d1a
Commit
3b5e2d1a
authored
Dec 12, 2002
by
Marcus Meissner
Committed by
Alexandre Julliard
Dec 12, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Split out 16bit code into typelib16.c.
parent
f73e0087
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
147 additions
and
103 deletions
+147
-103
Makefile.in
dlls/oleaut32/Makefile.in
+2
-0
typelib.c
dlls/oleaut32/typelib.c
+0
-103
typelib16.c
dlls/oleaut32/typelib16.c
+145
-0
No files found.
dlls/oleaut32/Makefile.in
View file @
3b5e2d1a
...
...
@@ -27,6 +27,8 @@ C_SRCS = \
typelib.c
\
variant.c
C_SRCS16
=
typelib16.c
RC_SRCS
=
version.rc
SUBDIRS
=
tests
...
...
dlls/oleaut32/typelib.c
View file @
3b5e2d1a
...
...
@@ -142,50 +142,6 @@ static void FromLEDWords(void *p_Val, int p_iSize)
/****************************************************************************
* QueryPathOfRegTypeLib [TYPELIB.14]
*
* the path is "Classes\Typelib\<guid>\<major>.<minor>\<lcid>\win16\"
* RETURNS
* path of typelib
*/
HRESULT
WINAPI
QueryPathOfRegTypeLib16
(
REFGUID
guid
,
/* [in] referenced guid */
WORD
wMaj
,
/* [in] major version */
WORD
wMin
,
/* [in] minor version */
LCID
lcid
,
/* [in] locale id */
LPBSTR16
path
/* [out] path of typelib */
)
{
char
xguid
[
80
];
char
typelibkey
[
100
],
pathname
[
260
];
DWORD
plen
;
TRACE
(
"
\n
"
);
if
(
HIWORD
(
guid
))
{
sprintf
(
typelibkey
,
"SOFTWARE
\\
Classes
\\
Typelib
\\
{%08lx-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}
\\
%d.%d
\\
%lx
\\
win16"
,
guid
->
Data1
,
guid
->
Data2
,
guid
->
Data3
,
guid
->
Data4
[
0
],
guid
->
Data4
[
1
],
guid
->
Data4
[
2
],
guid
->
Data4
[
3
],
guid
->
Data4
[
4
],
guid
->
Data4
[
5
],
guid
->
Data4
[
6
],
guid
->
Data4
[
7
],
wMaj
,
wMin
,
lcid
);
}
else
{
sprintf
(
xguid
,
"<guid 0x%08lx>"
,(
DWORD
)
guid
);
FIXME
(
"(%s,%d,%d,0x%04lx,%p),can't handle non-string guids.
\n
"
,
xguid
,
wMaj
,
wMin
,(
DWORD
)
lcid
,
path
);
return
E_FAIL
;
}
plen
=
sizeof
(
pathname
);
if
(
RegQueryValueA
(
HKEY_LOCAL_MACHINE
,
typelibkey
,
pathname
,
&
plen
))
{
/* try again without lang specific id */
if
(
SUBLANGID
(
lcid
))
return
QueryPathOfRegTypeLib16
(
guid
,
wMaj
,
wMin
,
PRIMARYLANGID
(
lcid
),
path
);
FIXME
(
"key %s not found
\n
"
,
typelibkey
);
return
E_FAIL
;
}
*
path
=
SysAllocString16
(
pathname
);
return
S_OK
;
}
/****************************************************************************
* QueryPathOfRegTypeLib [OLEAUT32.164]
* RETURNS
* path of typelib
...
...
@@ -286,28 +242,6 @@ HRESULT WINAPI CreateTypeLib(
return
E_FAIL
;
}
/******************************************************************************
* LoadTypeLib [TYPELIB.3] Loads and registers a type library
* NOTES
* Docs: OLECHAR FAR* szFile
* Docs: iTypeLib FAR* FAR* pptLib
*
* RETURNS
* Success: S_OK
* Failure: Status
*/
HRESULT
WINAPI
LoadTypeLib16
(
LPOLESTR
szFile
,
/* [in] Name of file to load from */
ITypeLib
**
pptLib
)
/* [out] Pointer to pointer to loaded type library */
{
FIXME
(
"(%s,%p): stub
\n
"
,
debugstr_w
((
LPWSTR
)
szFile
),
pptLib
);
if
(
pptLib
!=
0
)
*
pptLib
=
0
;
return
E_FAIL
;
}
/******************************************************************************
* LoadTypeLib [OLEAUT32.161]
* Loads and registers a type library
* NOTES
...
...
@@ -639,43 +573,6 @@ HRESULT WINAPI UnRegisterTypeLib(
return
S_OK
;
/* FIXME: pretend everything is OK */
}
/****************************************************************************
* OaBuildVersion (TYPELIB.15)
*
* known TYPELIB.DLL versions:
*
* OLE 2.01 no OaBuildVersion() avail 1993 -- ---
* OLE 2.02 1993-94 02 3002
* OLE 2.03 23 730
* OLE 2.03 03 3025
* OLE 2.03 W98 SE orig. file !! 1993-95 10 3024
* OLE 2.1 NT 1993-95 ?? ???
* OLE 2.3.1 W95 23 700
* OLE2 4.0 NT4SP6 1993-98 40 4277
*/
DWORD
WINAPI
OaBuildVersion16
(
void
)
{
/* FIXME: I'd like to return the highest currently known version value
* in case the user didn't force a --winver, but I don't know how
* to retrieve the "versionForced" info from misc/version.c :(
* (this would be useful in other places, too) */
FIXME
(
"If you get version error messages, please report them
\n
"
);
switch
(
GetVersion
()
&
0x8000ffff
)
/* mask off build number */
{
case
0x80000a03
:
/* WIN31 */
return
MAKELONG
(
3027
,
3
);
/* WfW 3.11 */
case
0x80000004
:
/* WIN95 */
return
MAKELONG
(
700
,
23
);
/* Win95A */
case
0x80000a04
:
/* WIN98 */
return
MAKELONG
(
3024
,
10
);
/* W98 SE */
case
0x00000004
:
/* NT4 */
return
MAKELONG
(
4277
,
40
);
/* NT4 SP6 */
default
:
FIXME
(
"Version value not known yet. Please investigate it!
\n
"
);
return
0
;
}
}
/* for better debugging info leave the static out for the time being */
#define static
...
...
dlls/oleaut32/typelib16.c
0 → 100644
View file @
3b5e2d1a
/*
* TYPELIB 16bit part.
*
* Copyright 1997 Marcus Meissner
* Copyright 1999 Rein Klazes
* Copyright 2000 Francois Jacques
* Copyright 2001 Huw D M Davies 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include "winerror.h"
#include "winnls.h"
/* for PRIMARYLANGID */
#include "winreg.h"
/* for HKEY_LOCAL_MACHINE */
#include "winuser.h"
#include "objbase.h"
#include "ole2disp.h"
#include "typelib.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
/****************************************************************************
* QueryPathOfRegTypeLib [TYPELIB.14]
*
* the path is "Classes\Typelib\<guid>\<major>.<minor>\<lcid>\win16\"
* RETURNS
* path of typelib
*/
HRESULT
WINAPI
QueryPathOfRegTypeLib16
(
REFGUID
guid
,
/* [in] referenced guid */
WORD
wMaj
,
/* [in] major version */
WORD
wMin
,
/* [in] minor version */
LCID
lcid
,
/* [in] locale id */
LPBSTR16
path
/* [out] path of typelib */
)
{
char
xguid
[
80
];
char
typelibkey
[
100
],
pathname
[
260
];
DWORD
plen
;
TRACE
(
"
\n
"
);
if
(
HIWORD
(
guid
))
{
sprintf
(
typelibkey
,
"SOFTWARE
\\
Classes
\\
Typelib
\\
{%08lx-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}
\\
%d.%d
\\
%lx
\\
win16"
,
guid
->
Data1
,
guid
->
Data2
,
guid
->
Data3
,
guid
->
Data4
[
0
],
guid
->
Data4
[
1
],
guid
->
Data4
[
2
],
guid
->
Data4
[
3
],
guid
->
Data4
[
4
],
guid
->
Data4
[
5
],
guid
->
Data4
[
6
],
guid
->
Data4
[
7
],
wMaj
,
wMin
,
lcid
);
}
else
{
sprintf
(
xguid
,
"<guid 0x%08lx>"
,(
DWORD
)
guid
);
FIXME
(
"(%s,%d,%d,0x%04lx,%p),can't handle non-string guids.
\n
"
,
xguid
,
wMaj
,
wMin
,(
DWORD
)
lcid
,
path
);
return
E_FAIL
;
}
plen
=
sizeof
(
pathname
);
if
(
RegQueryValueA
(
HKEY_LOCAL_MACHINE
,
typelibkey
,
pathname
,
&
plen
))
{
/* try again without lang specific id */
if
(
SUBLANGID
(
lcid
))
return
QueryPathOfRegTypeLib16
(
guid
,
wMaj
,
wMin
,
PRIMARYLANGID
(
lcid
),
path
);
FIXME
(
"key %s not found
\n
"
,
typelibkey
);
return
E_FAIL
;
}
*
path
=
SysAllocString16
(
pathname
);
return
S_OK
;
}
/******************************************************************************
* LoadTypeLib [TYPELIB.3] Loads and registers a type library
* NOTES
* Docs: OLECHAR FAR* szFile
* Docs: iTypeLib FAR* FAR* pptLib
*
* RETURNS
* Success: S_OK
* Failure: Status
*/
HRESULT
WINAPI
LoadTypeLib16
(
LPOLESTR
szFile
,
/* [in] Name of file to load from */
ITypeLib
**
pptLib
)
/* [out] Pointer to pointer to loaded type library */
{
FIXME
(
"(%s,%p): stub
\n
"
,
debugstr_w
((
LPWSTR
)
szFile
),
pptLib
);
if
(
pptLib
!=
0
)
*
pptLib
=
0
;
return
E_FAIL
;
}
/****************************************************************************
* OaBuildVersion (TYPELIB.15)
*
* known TYPELIB.DLL versions:
*
* OLE 2.01 no OaBuildVersion() avail 1993 -- ---
* OLE 2.02 1993-94 02 3002
* OLE 2.03 23 730
* OLE 2.03 03 3025
* OLE 2.03 W98 SE orig. file !! 1993-95 10 3024
* OLE 2.1 NT 1993-95 ?? ???
* OLE 2.3.1 W95 23 700
* OLE2 4.0 NT4SP6 1993-98 40 4277
*/
DWORD
WINAPI
OaBuildVersion16
(
void
)
{
/* FIXME: I'd like to return the highest currently known version value
* in case the user didn't force a --winver, but I don't know how
* to retrieve the "versionForced" info from misc/version.c :(
* (this would be useful in other places, too) */
FIXME
(
"If you get version error messages, please report them
\n
"
);
switch
(
GetVersion
()
&
0x8000ffff
)
/* mask off build number */
{
case
0x80000a03
:
/* WIN31 */
return
MAKELONG
(
3027
,
3
);
/* WfW 3.11 */
case
0x80000004
:
/* WIN95 */
return
MAKELONG
(
700
,
23
);
/* Win95A */
case
0x80000a04
:
/* WIN98 */
return
MAKELONG
(
3024
,
10
);
/* W98 SE */
case
0x00000004
:
/* NT4 */
return
MAKELONG
(
4277
,
40
);
/* NT4 SP6 */
default:
FIXME
(
"Version value not known yet. Please investigate it!
\n
"
);
return
0
;
}
}
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