Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
05b073da
Commit
05b073da
authored
Mar 07, 2006
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscms: Implement EnumColorProfiles{A,W}.
parent
f1a08352
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
16 deletions
+20
-16
profile.c
dlls/mscms/profile.c
+0
-0
stub.c
dlls/mscms/stub.c
+0
-16
icm.h
include/icm.h
+20
-0
No files found.
dlls/mscms/profile.c
View file @
05b073da
This diff is collapsed.
Click to expand it.
dlls/mscms/stub.c
View file @
05b073da
...
...
@@ -114,22 +114,6 @@ BOOL WINAPI DisassociateColorProfileFromDeviceW( PCWSTR machine, PCWSTR profile,
return
TRUE
;
}
BOOL
WINAPI
EnumColorProfilesA
(
PCSTR
machine
,
PENUMTYPEA
record
,
PBYTE
buffer
,
PDWORD
size
,
PDWORD
number
)
{
FIXME
(
"( %p, %p, %p, %p, %p ) stub
\n
"
,
machine
,
record
,
buffer
,
size
,
number
);
return
FALSE
;
}
BOOL
WINAPI
EnumColorProfilesW
(
PCWSTR
machine
,
PENUMTYPEW
record
,
PBYTE
buffer
,
PDWORD
size
,
PDWORD
number
)
{
FIXME
(
"( %p, %p, %p, %p, %p ) stub
\n
"
,
machine
,
record
,
buffer
,
size
,
number
);
return
FALSE
;
}
DWORD
WINAPI
GenerateCopyFilePaths
(
LPCWSTR
printer
,
LPCWSTR
directory
,
LPBYTE
clientinfo
,
DWORD
level
,
LPWSTR
sourcedir
,
LPDWORD
sourcedirsize
,
LPWSTR
targetdir
,
LPDWORD
targetdirsize
,
DWORD
flags
)
...
...
include/icm.h
View file @
05b073da
...
...
@@ -207,6 +207,8 @@ typedef struct tagPROFILE
DWORD
cbDataSize
;
}
PROFILE
,
*
PPROFILE
,
*
LPPROFILE
;
#define ENUM_TYPE_VERSION 0x0300
typedef
struct
tagENUMTYPEA
{
DWORD
dwSize
;
...
...
@@ -255,6 +257,24 @@ typedef struct tagENUMTYPEW
DWORD
dwDeviceClass
;
}
ENUMTYPEW
,
*
PENUMTYPEW
,
*
LPENUMTYPEW
;
#define ET_DEVICENAME 0x00000001
#define ET_MEDIATYPE 0x00000002
#define ET_DITHERMODE 0x00000004
#define ET_RESOLUTION 0x00000008
#define ET_CMMTYPE 0x00000010
#define ET_CLASS 0x00000020
#define ET_DATACOLORSPACE 0x00000040
#define ET_CONNECTIONSPACE 0x00000080
#define ET_SIGNATURE 0x00000100
#define ET_PLATFORM 0x00000200
#define ET_PROFILEFLAGS 0x00000400
#define ET_MANUFACTURER 0x00000800
#define ET_MODEL 0x00001000
#define ET_ATTRIBUTES 0x00002000
#define ET_RENDERINGINTENT 0x00004000
#define ET_CREATOR 0x00008000
#define ET_DEVICECLASS 0x00010000
struct
_tagCOLORMATCHSETUPA
;
struct
_tagCOLORMATCHSETUPW
;
...
...
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