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
7ef5661d
Commit
7ef5661d
authored
Jul 29, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 30, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Added dwrite.idl file.
parent
65f41849
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
45 additions
and
1 deletion
+45
-1
.gitignore
.gitignore
+1
-0
dwrite.spec
dlls/dwrite/dwrite.spec
+1
-1
main.c
dlls/dwrite/main.c
+12
-0
Makefile.in
include/Makefile.in
+2
-0
dcommon.h
include/dcommon.h
+29
-0
dwrite.idl
include/dwrite.idl
+0
-0
No files found.
.gitignore
View file @
7ef5661d
...
...
@@ -172,6 +172,7 @@ include/dispex.h
include/docobj.h
include/docobjectservice.h
include/downloadmgr.h
include/dwrite.h
include/dxgi.h
include/endpointvolume.h
include/exdisp.h
...
...
dlls/dwrite/dwrite.spec
View file @
7ef5661d
@ st
ub DWriteCreateFactory
@ st
dcall DWriteCreateFactory(long ptr ptr)
dlls/dwrite/main.c
View file @
7ef5661d
...
...
@@ -23,6 +23,12 @@
#include "windef.h"
#include "winbase.h"
#include "dwrite.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
dwrite
);
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
reason
,
LPVOID
reserved
)
{
switch
(
reason
)
...
...
@@ -35,3 +41,9 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD reason, LPVOID reserved)
}
return
TRUE
;
}
HRESULT
WINAPI
DWriteCreateFactory
(
DWRITE_FACTORY_TYPE
type
,
REFIID
riid
,
IUnknown
**
factory
)
{
FIXME
(
"(%d, %s, %p): stub
\n
"
,
type
,
debugstr_guid
(
riid
),
factory
);
return
E_NOTIMPL
;
}
include/Makefile.in
View file @
7ef5661d
...
...
@@ -32,6 +32,7 @@ PUBLIC_IDL_H_SRCS = \
docobj.idl
\
docobjectservice.idl
\
downloadmgr.idl
\
dwrite.idl
\
dxgi.idl
\
endpointvolume.idl
\
exdisp.idl
\
...
...
@@ -208,6 +209,7 @@ SRCDIR_INCLUDES = \
dbt.h
\
dciddi.h
\
dciman.h
\
dcommon.h
\
dde.h
\
dde.rh
\
ddeml.h
\
...
...
include/dcommon.h
0 → 100644
View file @
7ef5661d
/*
* Copyright 2012 Nikolay Sivov 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
*/
#ifndef __WINE_DCOMMON_H
#define __WINE_DCOMMON_H
typedef
enum
DWRITE_MEASURING_MODE
{
DWRITE_MEASURING_MODE_NATURAL
,
DWRITE_MEASURING_MODE_GDI_CLASSIC
,
DWRITE_MEASURING_MODE_GDI_NATURAL
}
DWRITE_MEASURING_MODE
;
#endif
/* __WINE_DCOMMON_H */
include/dwrite.idl
0 → 100644
View file @
7ef5661d
This diff is collapsed.
Click to expand it.
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