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
fc453968
Commit
fc453968
authored
Sep 16, 2002
by
Juraj Hercek
Committed by
Alexandre Julliard
Sep 16, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- fixed typo error in CMYK definition (COLOREF -> COLORREF)
- added tags to structures (_OFSTRUCT, _FILETIME, ...)
parent
ffd54a9b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
winbase.h
include/winbase.h
+11
-11
wingdi.h
include/wingdi.h
+1
-1
No files found.
include/winbase.h
View file @
fc453968
...
...
@@ -139,7 +139,7 @@ typedef PEXCEPTION_RECORD LPEXCEPTION_RECORD;
typedef
PEXCEPTION_POINTERS
LPEXCEPTION_POINTERS
;
#define OFS_MAXPATHNAME 128
typedef
struct
typedef
struct
_OFSTRUCT
{
BYTE
cBytes
;
BYTE
fFixedDisk
;
...
...
@@ -202,7 +202,7 @@ typedef struct _SECURITY_ATTRIBUTES
#ifndef _FILETIME_
#define _FILETIME_
/* 64 bit number of 100 nanoseconds intervals since January 1, 1601 */
typedef
struct
typedef
struct
_FILETIME
{
#ifdef WORDS_BIGENDIAN
DWORD
dwHighDateTime
;
...
...
@@ -215,7 +215,7 @@ typedef struct
#endif
/* _FILETIME_ */
/* Find* structures */
typedef
struct
typedef
struct
_WIN32_FIND_DATAA
{
DWORD
dwFileAttributes
;
FILETIME
ftCreationTime
;
...
...
@@ -229,7 +229,7 @@ typedef struct
CHAR
cAlternateFileName
[
14
];
}
WIN32_FIND_DATAA
,
*
PWIN32_FIND_DATAA
,
*
LPWIN32_FIND_DATAA
;
typedef
struct
typedef
struct
_WIN32_FIND_DATAW
{
DWORD
dwFileAttributes
;
FILETIME
ftCreationTime
;
...
...
@@ -261,7 +261,7 @@ typedef enum _FINDEX_SEARCH_OPS
FindExSearchMaxSearchOp
}
FINDEX_SEARCH_OPS
;
typedef
struct
typedef
struct
_PROCESS_HEAP_ENTRY
{
LPVOID
lpData
;
DWORD
cbData
;
...
...
@@ -455,7 +455,7 @@ typedef struct tagMEMORYSTATUS
}
MEMORYSTATUS
,
*
LPMEMORYSTATUS
;
typedef
struct
{
typedef
struct
_SYSTEMTIME
{
WORD
wYear
;
WORD
wMonth
;
WORD
wDayOfWeek
;
...
...
@@ -493,7 +493,7 @@ typedef VOID (CALLBACK *LPOVERLAPPED_COMPLETION_ROUTINE)(DWORD dwErrorCode, DWOR
#define STARTF_USESTDHANDLES 0x00000100
#define STARTF_USEHOTKEY 0x00000200
typedef
struct
{
typedef
struct
_STARTUPINFOA
{
DWORD
cb
;
/* 00: size of struct */
LPSTR
lpReserved
;
/* 04: */
LPSTR
lpDesktop
;
/* 08: */
...
...
@@ -514,7 +514,7 @@ typedef struct {
HANDLE
hStdError
;
/* 40: */
}
STARTUPINFOA
,
*
LPSTARTUPINFOA
;
typedef
struct
{
typedef
struct
_STARTUPINFOW
{
DWORD
cb
;
LPWSTR
lpReserved
;
LPWSTR
lpDesktop
;
...
...
@@ -538,14 +538,14 @@ typedef struct {
DECL_WINELIB_TYPE_AW
(
STARTUPINFO
)
DECL_WINELIB_TYPE_AW
(
LPSTARTUPINFO
)
typedef
struct
{
typedef
struct
_PROCESS_INFORMATION
{
HANDLE
hProcess
;
HANDLE
hThread
;
DWORD
dwProcessId
;
DWORD
dwThreadId
;
}
PROCESS_INFORMATION
,
*
PPROCESS_INFORMATION
,
*
LPPROCESS_INFORMATION
;
typedef
struct
{
typedef
struct
_TIME_ZONE_INFORMATION
{
LONG
Bias
;
WCHAR
StandardName
[
32
];
SYSTEMTIME
StandardDate
;
...
...
@@ -612,7 +612,7 @@ typedef struct {
#define STD_OUTPUT_HANDLE ((DWORD) -11)
#define STD_ERROR_HANDLE ((DWORD) -12)
typedef
struct
typedef
struct
_BY_HANDLE_FILE_INFORMATION
{
DWORD
dwFileAttributes
;
FILETIME
ftCreationTime
;
...
...
include/wingdi.h
View file @
fc453968
...
...
@@ -427,7 +427,7 @@ DECL_WINELIB_TYPE_AW(LOGCOLORSPACE)
#define GetMValue(cmyk) ((BYTE) ((cymk) >> 16))
#define GetCValue(cmyk) ((BYTE) ((cymk) >> 24))
#define CMYK(c,m,y,k) ((COLOREF)((((BYTE)(k)|((WORD)((BYTE)(y))<<8))|(((DWORD)(BYTE)(m))<<16))|(((DWORD)(BYTE)(c))<<24)))
#define CMYK(c,m,y,k) ((COLOR
R
EF)((((BYTE)(k)|((WORD)((BYTE)(y))<<8))|(((DWORD)(BYTE)(m))<<16))|(((DWORD)(BYTE)(c))<<24)))
#define ICM_OFF 1
...
...
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