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
9e23b509
Commit
9e23b509
authored
Oct 03, 2000
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 03, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some missing 'SysAllocString' prototypes.
Added some missing 'TypeLib' prototypes.
parent
9046658f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
7 deletions
+28
-7
oleauto.h
include/oleauto.h
+28
-7
No files found.
include/oleauto.h
View file @
9e23b509
...
...
@@ -18,12 +18,20 @@ struct tagVARIANT;
extern
"C"
{
#endif
/*
* BSTR API
*/
BSTR
WINAPI
SysAllocString
(
const
OLECHAR
*
);
INT
WINAPI
SysReAllocString
(
LPBSTR
,
const
OLECHAR
*
);
VOID
WINAPI
SysFreeString
(
BSTR
);
BSTR
WINAPI
SysAllocStringLen
(
const
OLECHAR
*
,
UINT
);
int
WINAPI
SysReAllocStringLen
(
BSTR
*
,
const
OLECHAR
*
,
UINT
);
int
WINAPI
SysStringLen
(
BSTR
);
BSTR
WINAPI
SysAllocStringByteLen
(
char
*
,
int
);
BSTR
WINAPI
SysAllocStringLen
(
const
OLECHAR
*
,
UINT
);
void
WINAPI
SysFreeString
(
BSTR
);
INT
WINAPI
SysReAllocString
(
LPBSTR
,
const
OLECHAR
*
);
int
WINAPI
SysReAllocStringLen
(
BSTR
*
,
const
OLECHAR
*
,
UINT
);
int
WINAPI
SysStringByteLen
(
BSTR
);
int
WINAPI
SysStringLen
(
BSTR
);
/*****************************************************************
* ErrorInfo API
...
...
@@ -507,8 +515,6 @@ typedef enum tagREGKIND
}
REGKIND
;
HRESULT
WINAPI
LoadTypeLib
(
OLECHAR
*
szFile
,
ITypeLib
**
pptLib
);
HRESULT
WINAPI
LoadTypeLibEx
(
LPOLESTR
szFile
,
REGKIND
regKind
,
ITypeLib
**
pptLib
);
INT
WINAPI
DosDateTimeToVariantTime
(
USHORT
,
USHORT
,
DATE
*
);
HRESULT
WINAPI
DispGetParam
(
DISPPARAMS
*
pdispparams
,
UINT
position
,
...
...
@@ -531,4 +537,19 @@ HRESULT WINAPI DispCallFunc(void* pvInstance, ULONG oVft, CALLCONV cc,
#define VARCMP_GT 2
#define VARCMP_NULL 3
/*
* TypeLib API
*/
HRESULT
WINAPI
CreateTypeLib
(
SYSKIND
,
const
OLECHAR
*
,
ICreateTypeLib
**
);
HRESULT
WINAPI
CreateTypeLib2
(
SYSKIND
,
LPCOLESTR
,
ICreateTypeLib2
**
);
HRESULT
WINAPI
LoadRegTypeLib
(
REFGUID
,
WORD
,
WORD
,
LCID
,
ITypeLib
**
);
HRESULT
WINAPI
LoadTypeLib
(
const
OLECHAR
*
,
ITypeLib
**
);
HRESULT
WINAPI
LoadTypeLibEx
(
LPCOLESTR
,
REGKIND
,
ITypeLib
**
);
HRESULT
WINAPI
QueryPathOfRegTypeLib
(
REFGUID
,
WORD
,
WORD
,
LCID
,
LPBSTR
);
HRESULT
WINAPI
RegisterTypeLib
(
ITypeLib
*
,
OLECHAR
*
,
OLECHAR
*
);
HRESULT
WINAPI
UnRegisterTypeLib
(
REFGUID
,
WORD
,
WORD
,
LCID
,
SYSKIND
);
#endif
/*__WINE_OLEAUTO_H*/
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