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
cd8d181a
Commit
cd8d181a
authored
May 18, 2001
by
Francois Gouget
Committed by
Alexandre Julliard
May 18, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Spelling typos.
parent
b30d59dc
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
10 deletions
+10
-10
monthcal.c
dlls/comctl32/monthcal.c
+1
-1
dplaysp.c
dlls/dplayx/dplaysp.c
+1
-1
variant.c
dlls/oleaut32/variant.c
+1
-1
winelib-porting.sgml
documentation/winelib-porting.sgml
+1
-1
defwnd.c
windows/defwnd.c
+1
-1
clipboard.c
windows/x11drv/clipboard.c
+5
-5
No files found.
dlls/comctl32/monthcal.c
View file @
cd8d181a
...
...
@@ -107,7 +107,7 @@ static const int DayOfWeekTable[] = {0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4};
int
MONTHCAL_MonthLength
(
int
month
,
int
year
)
{
const
int
mdays
[]
=
{
31
,
28
,
31
,
30
,
31
,
30
,
31
,
31
,
30
,
31
,
30
,
31
,
0
};
/*Wrap around, this eases handl
e
ing*/
/*Wrap around, this eases handling*/
if
(
month
==
0
)
month
=
12
;
if
(
month
==
13
)
...
...
dlls/dplayx/dplaysp.c
View file @
cd8d181a
...
...
@@ -731,7 +731,7 @@ static HRESULT WINAPI IDirectPlaySPImpl_HandleMessage
{
ERR( "Unable to perform action for msg type 0x%08lx\n", lpMsg->dwType );
}
/* If a recei
e
ve event was registered for this player, invoke it */
/* If a receive event was registered for this player, invoke it */
if( hReceiveEvent )
{
SetEvent( hReceiveEvent );
...
...
dlls/oleaut32/variant.c
View file @
cd8d181a
...
...
@@ -3245,7 +3245,7 @@ HRESULT WINAPI VarBstrFromCy(CY cyIn, LCID lcid, ULONG dwFlags, BSTR *pbstrOut)
* VarBstrFromDate [OLEAUT32.114]
*
* The date is implemented using an 8 byte floating-point number.
* Days are represented by whole numbers increments starting with 0.00
h
as
* Days are represented by whole numbers increments starting with 0.00 as
* being December 30 1899, midnight.
* The hours are expressed as the fractional part of the number.
* December 30 1899 at midnight = 0.00
...
...
documentation/winelib-porting.sgml
View file @
cd8d181a
...
...
@@ -99,7 +99,7 @@ printf("Processor architecture=%d\n",si ANONS .wProcessorArchitecture);
<listitem>
<para>
Use the compiler default, but don't call any Win32 unicode
function
s
without converting the strings first!
function without converting the strings first!
</para>
</listitem>
</orderedlist>
...
...
windows/defwnd.c
View file @
cd8d181a
...
...
@@ -860,7 +860,7 @@ LRESULT WINAPI DefWindowProcA( HWND hwnd, UINT msg, WPARAM wParam,
* Return value is dependent upon the message.
*/
LRESULT
WINAPI
DefWindowProcW
(
HWND
hwnd
,
/* [in] window procedure rec
ie
ving message */
HWND
hwnd
,
/* [in] window procedure rec
ei
ving message */
UINT
msg
,
/* [in] message identifier */
WPARAM
wParam
,
/* [in] first message parameter */
LPARAM
lParam
)
/* [in] second message parameter */
...
...
windows/x11drv/clipboard.c
View file @
cd8d181a
...
...
@@ -15,9 +15,9 @@
* 1. PRIMARY(XA_PRIMARY)
* 2. CLIPBOARD
*
* In our implementation, the CLIPBOARD selection takes precedence over PRIMARY
.
* In our implementation, the CLIPBOARD selection takes precedence over PRIMARY
,
* i.e. if a CLIPBOARD selection is available, it is used instead of PRIMARY.
* When Wine taks ownership of the clipboard, it takes ownership of BOTH selections.
* When Wine tak
e
s ownership of the clipboard, it takes ownership of BOTH selections.
* While giving up selection ownership, if the CLIPBOARD selection is lost,
* it will lose both PRIMARY and CLIPBOARD and empty the clipboard.
* However if only PRIMARY is lost, it will continue to hold the CLIPBOARD selection
...
...
@@ -26,7 +26,7 @@
* Every format exposed via a windows clipboard format is also exposed through
* a corresponding X selection target. A selection target atom is synthesized
* whenever a new Windows clipboard format is registered via RegisterClipboardFormat,
* or when a built
in format is used for the first time.
* or when a built
-
in format is used for the first time.
* Windows native format are exposed by prefixing the format name with "<WCF>"
* This allows us to uniquely identify windows native formats exposed by other
* running WINE apps.
...
...
@@ -34,7 +34,7 @@
* In order to allow external applications to query WINE for supported formats,
* we respond to the "TARGETS" selection target. (See EVENT_SelectionRequest
* for implementation) We use the same mechanism to query external clients for
* availability of a particular format, by cach
e
ing the list of available targets
* availability of a particular format, by caching the list of available targets
* by using the clipboard cache's "delayed render" mechanism. If a selection client
* does not support the "TARGETS" selection target, we actually attempt to retrieve
* the format requested as a fallback mechanism.
...
...
@@ -912,7 +912,7 @@ BOOL X11DRV_IsClipboardFormatAvailable(UINT wFormat)
||
(
ClipboardSelectionOwner
!=
ownerClipboard
)
)
{
/*
* First try cach
e
ing the CLIPBOARD selection.
* First try caching the CLIPBOARD selection.
* If unavailable try PRIMARY.
*/
if
(
X11DRV_CLIPBOARD_CacheDataFormats
(
xaClipboard
)
==
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