Eric Pouech
96c514bdf8
Replaced memset by hand made equivalent to work around some buggy
...
memset implementations.
2001-08-18 16:09:41 +00:00
Eric Pouech
6360917580
Because of circular dependencies between comctl32 and msvfw32, replace
...
in comctl32 delay loading of msvfw32 by manual loading.
2001-08-18 16:09:19 +00:00
Gerard Patel
0a5ab16aee
Fix FillRect calls in FILEDLG95_LOOKIN_DrawItem.
2001-08-18 16:07:06 +00:00
Marcus Meissner
83e0bac511
Do not hold the GDI lock when the ABORTDOC procedure is called.
2001-08-18 16:06:47 +00:00
Mike McCormack
8fef006fd2
Implemented oleaut32.VarBstrCat.
2001-08-18 16:06:30 +00:00
Alexandre Julliard
78f9fae706
Create GDI stock objects as normal objects instead of using magic
...
handle values.
2001-08-17 00:07:13 +00:00
Alexandre Julliard
e811f9c353
Specify sizes for stock fonts again; removed the FixStockFontSize
...
hack. Ignore mapping modes when selecting stock fonts into a DC.
Removed a few direct accesses to GDI structures from x11drv.
2001-08-16 19:13:52 +00:00
Alexandre Julliard
3954117ce4
Moved undocshell.h to dlls/shell32. Removed shell16.h.
2001-08-16 18:49:56 +00:00
Alexandre Julliard
301df6b5cd
Added names to standard critical sections (suggested by Andreas
...
Mohr).
2001-08-16 18:12:56 +00:00
Mike McCormack
06abe79037
Partially implement oleaut32.VarBstrCmp.
2001-08-16 18:01:41 +00:00
Alexandre Julliard
2fe7c11014
Fixed win16drv initialisation.
2001-08-15 23:30:15 +00:00
Uwe Bonnes
97ac961214
PathGetExtensionAW has three arguments.
2001-08-15 23:20:21 +00:00
Hidenori Takeshima
fb96436931
Added some stubs for quartz dll.
2001-08-15 19:26:52 +00:00
Marcus Meissner
4736cc8cd5
Implemented VarParseNumFromStr, VarNumFromParseNum.
2001-08-15 18:47:28 +00:00
Ian Pilcher
2576513014
Eliminate glyph bounding boxes & other unused font metrics.
2001-08-15 17:41:37 +00:00
Eric Pouech
7321bfa006
Fixed error message and return value in case of bogus 'open all' mci
...
string command. Minor 32/16 optimizations and cosmetic fixes.
2001-08-15 17:40:03 +00:00
Marcus Meissner
542f775343
DateTimeStringToTm and DateToTm must use dwFlags instead of lcid.
2001-08-15 17:39:24 +00:00
Alexandre Julliard
20bc491dc7
Added mappings for a few messages.
...
Added unicode messages bit set to shortcut message mapping when
possible.
2001-08-13 20:33:21 +00:00
Guy L. Albertelli
d1c46851e1
- Implemented RB_MAXIMIZEBAND for the "ideal=TRUE" case.
...
- Implemented NM_CUSTOMDRAW notifications for the ITEMPREPAINT and
ITEMPOSTPAINT only. (Used by IE4 - go figure.)
- Invalidate window rectangles after certain RB_ messages like the
native. Fixed some painting problems.
- Added UpdateWindow call in _MoveChildWindows to fix other painting
problems.
- Set the Caption Font as the default font for all bands.
2001-08-13 20:11:34 +00:00
Guy L. Albertelli
f617391dad
- Implement TBSTYLE_FLAT as "transparent" toolbar and buttons. (Skip
...
FillRect and BF_MIDDLE on _FLAT toolbars.)
- Issue FIXMEs for unsupported styles.
- If the "hidden" state has changed then recalc the buttons.
- Support TBSTYLE_CUSTOMERASE (used by IE4) ans issue some of the
necessary NM_CUSTOMDRAW notifies.
- Pass the WM_ERASEBKGND to parent if the toolbar is "transparent".
- Invalidate the area 1 bigger than the button rect on a WM_MOUSELEAVE
so that the edge is "erased" by the parent.
- Support the PGN_CALCSIZE notify since a toolbar can be a child of the
Pager control.
2001-08-13 20:09:18 +00:00
Guy L. Albertelli
be73d10dc5
Add support to respond to the PGN_CALCSIZE version of the WM_NOTIFY
...
message.
2001-08-13 20:08:21 +00:00
Guy L. Albertelli
3554e75cc8
- Make all WM_NOTIFY messages go to the parent.
...
- Allow WM_WINDOWPOSCHANGING when the control is size 0 to set initial
size.
- Combine multiple SetWindowPos calls in same processing line and make
the flags like native.
- Redo WM_NCCALCSIZE to match native.
- Since Pager is a "transparent" control (except for its own buttons),
the WM_ERASEBKGND needs to be passed to the parent. Also do the window
offset like the native control does.
2001-08-13 20:07:47 +00:00
Daniel Walker
3e3e230d3b
- implemented SystemTimetoVariantTime/VariantTimetoSystemTime
...
There was another implementation of SystemTimetoVariantTime
submitted that didn't work for dates prior to 1900.
- implemented VarDateFromUDate/VarUdateFromDate
- implemented VariantTimeToDosDateTime
2001-08-13 20:07:01 +00:00
Jukka Heinonen
abdb6d6836
Fixed _control87 return value, use of wrong assembler command to get
...
fp control word and a bug that inverted _IC_AFFINE flag.
Made _controlfp work as specified in MSDN.
2001-08-13 20:03:29 +00:00
Ian Pilcher
1ea54c608e
Remove unused character width array.
2001-08-11 18:23:17 +00:00
Ian Pilcher
ec74ea3e98
Make EnumFonts and SelectObject use common font scaling.
2001-08-11 18:22:29 +00:00
Alexandre Julliard
de42428f23
Removed a number of direct accesses to the WND structure, replacing
...
them by API calls.
2001-08-10 22:51:42 +00:00
Jörg Mayer
e5b5af9d66
Fixed a few signed/unsigned and "unsigned < 0 always true" warnings.
2001-08-10 22:49:35 +00:00
Ian Pilcher
061cfa80a7
Removed ANSI encoding stuff.
2001-08-10 22:30:16 +00:00
Dusan Lacko
1a74b2abd6
Fix ExtractFromEXEDLL for nIndex != 0.
...
Prefer 8bit icons.
2001-08-10 22:29:48 +00:00
Mike McCormack
0dae258385
Implemented msvcrt._mbspbrk.
2001-08-10 22:24:54 +00:00
Eric Pouech
78a4134e51
- implemented correctly the HSZ as local atoms and added the needed
...
conversions to global atoms
- enhanced internal handle <=> pointer conversions, as well as
validity of such objects (life time, destruction, mutual access...)
- fixed a few ANSI/Unicode issues, stores most of the data as Unicode
- started having both Ansi/Unicode DDE window procs for message A/W
transformation
- fixed a few segmented pointer issues (mainly in DdeInitialize &
DdeGetData)
- added most of the CBF_ flags handling
- implemented the conversation announcement (XTYP_CONNECT_CONFIRM) on
server side
- enhanced DdeQueryConfig and implemented DdeReconnect
- implemented conversation termination (including XTYP_UNREGISTER)
- several others code clean up
- added transaction support on server side too
2001-08-09 22:07:22 +00:00
Mike McCormack
7b3495ac93
Implemented multibyte string reverse.
2001-08-09 21:37:19 +00:00
Ian Pilcher
c4e40d8f9e
Remove previously disabled code.
2001-08-09 21:36:56 +00:00
Patrik Stridvall
a2afd5b8ad
Documentation fixes.
2001-08-09 21:36:39 +00:00
Patrik Stridvall
ad9cab82a4
Fixed issue found by winapi_check.
2001-08-09 21:35:59 +00:00
Alexandre Julliard
e994d5036e
Added Interlocked*Pointer functions.
...
Fixed InterlockedCompareExchange prototype.
2001-08-09 21:21:13 +00:00
Andreas Mohr
da920ee9b9
Spelling fixes.
2001-08-09 21:16:55 +00:00
Alexandre Julliard
e6533a6b71
Fixed DrawState16 callback support.
2001-08-08 23:26:32 +00:00
Alexandre Julliard
fa7ae72060
Fixed loop termination check in PathIsExeW.
2001-08-08 23:24:15 +00:00
Ian Pilcher
625bef463f
Rewrite and separate AFM parsing code (no more [afmfiles]).
2001-08-08 23:22:06 +00:00
Alexandre Julliard
d253c58b1b
Rewrote most of SendMessage/PeekMessage.
...
Implemented inter-process messaging.
Moved most message routines to dlls/user, and split off 16-bit
routines to a separate file.
2001-08-07 19:19:08 +00:00
Marcus Meissner
252b0fe099
Implemented OleLoadPicture.
...
Added support for loading JPEG, Bitmap and Icons from persistant
streams.
Implemented JPEG support using libjpeg, added necessary configure.in
options.
Added IConnectionPoint style notifications to the IPicture iface.
Implemented several of the stubs already there, added some more.
2001-08-06 18:52:14 +00:00
Jukka Heinonen
822ab45314
XGrabPointer is now called from the correct thread context and it is
...
made sure that we have keyboard focus when using DirectX.
2001-08-06 18:47:25 +00:00
Alexandre Julliard
bfb4a23aa9
Replaced MSG_InternalGetMessage calls by equivalent exported APIs.
2001-08-06 18:05:47 +00:00
Andreas Mohr
c457fbdde6
Fixed tab control index handling.
2001-08-06 17:51:09 +00:00
Marcus Meissner
99f54153f5
SetCommConfig has 3 arguments, not 2.
2001-08-06 17:50:42 +00:00
Marcus Meissner
f7c69ede9e
First (partial) implementation of ITypeInfo::Invoke.
...
Fixed buffer len passing to snprintf().
2001-08-06 17:46:18 +00:00
Malte Starostik
b91c3ca7d1
Implemented RegisterTypeLib.
2001-08-03 18:13:24 +00:00
Andreas Mohr
0ab0704822
Only add "." separator in case a default file name extension does
...
exist.
2001-08-03 18:11:49 +00:00
Guy L. Albertelli
9a1a35e489
- Add debugging dumps of bar and buttons, and trace entry for each
...
message.
- Organize WM_NOTIFY processing in preparation for Unicode
- Implement TBN_GETDISPINFO and I_IMAGECALLBACK for bitmaps.
- Implement drawing of separator for TBSTYLE_DROPDOWN similar to native.
- Change drawing of buttons to support TBSTYLE_LIST and make match
native pixel layout (with and without bitmaps).
- Change TOOLBAR_MeasureString to measure with DrawText like native.
This eliminates extra space due to prefix char ("&").
- Speed up TOOLBAR_CalcStrings by doing the HDC and FONT selection once.
- Change calc of buttons to match drawing for TBSTYLE_LIST and
separators.
2001-08-03 18:10:30 +00:00
Jukka Heinonen
cce6dd0033
Include device name in call to CreateIC.
2001-07-31 17:25:47 +00:00
Alexandre Julliard
8f4c007ff5
Fixed desktop window structure initialization.
2001-07-31 01:00:50 +00:00
Alexandre Julliard
502d83b1d2
Fixed a few problems with DCX_* flags handling.
2001-07-31 00:14:06 +00:00
Nog
111ec8d6c2
Don't enable the 'hot' state of a toolbar button when it's not
...
enabled.
2001-07-31 00:10:06 +00:00
Lionel Ulmer
7fc3a3bf20
- added support for the SGIS multitexture extension.
...
- misc. other fixes
2001-07-31 00:08:05 +00:00
Alexandre Julliard
9208301d16
Rewrote Escape to avoid calling down to Escape16.
...
Replaced Escape by ExtEscape in the DC function table.
2001-07-29 20:25:14 +00:00
Patrik Stridvall
6ad988eb2d
Fixed some warnings.
2001-07-29 20:19:51 +00:00
Alexandre Julliard
99bb9f9775
Added GetDeviceCaps to the DC driver interface. Removed devCaps
...
pointer in the generic DC structure.
2001-07-28 00:18:02 +00:00
Alexandre Julliard
4c5b35d6e9
Removed unused DC_FUNCS pointers.
2001-07-28 00:09:07 +00:00
Andreas Mohr
0ce0bef9c1
Don't crash if DeviceCapabilities(DC_PAPERNAMES) fails.
2001-07-27 23:55:51 +00:00
Alexandre Julliard
9dd5b16382
Added missing ntdll imports.
2001-07-27 19:49:49 +00:00
Alexandre Julliard
3dd63eb2ad
Build the DC function table by using GetProcAddress on the graphics
...
driver module. Moved driver support to dlls/gdi.
2001-07-27 19:37:31 +00:00
Alexandre Julliard
e9dd63ef16
Removed import of x11drv from ddraw.
2001-07-26 21:48:17 +00:00
Patrik Stridvall
2344798c46
Fixed some warnings.
2001-07-26 21:44:44 +00:00
Patrik Stridvall
b3b61dad68
Documentation fixes.
2001-07-26 21:44:23 +00:00
Patrik Stridvall
33c40709bf
- Moved comm related protoypes to the correct .h file.
...
- Cleaned up the include section.
2001-07-26 21:43:56 +00:00
Ian Pilcher
42e052d405
Rewrite TrueType font metric parsing code.
2001-07-26 21:42:45 +00:00
Dmitry Timoshkov
9a57ef4de1
Fix a typo.
2001-07-26 21:41:22 +00:00
Alexandre Julliard
5edf4e1cef
Removed a few unnecessary Callouts.
2001-07-26 20:12:54 +00:00
Alexandre Julliard
8afe6628f8
Avoid using GetFastQueue16 from USER.
2001-07-26 20:12:22 +00:00
Travis Michielsen
188b32b73f
Fully implement DrawTextEx* functions.
2001-07-26 20:10:40 +00:00
Marcus Meissner
40734af751
Be a bit more graceful on NULL property sheet titles.
2001-07-26 20:07:53 +00:00
Guy L. Albertelli
2435237537
- On TB_SETIMAGELIST retrieve new values of the bitmap width and
...
height (fixes overlap of image and text in IE4).
- Handle return codes from TBN_DROPDOWN (allows a "dropdown" to be
treated like a regular button).
- Implement TBN_BEGINDRAG and TBN_ENDDRAG in WM_LBUTTON{DOWN|UP} (not
necessary but done by native).
- Implement NM_RELEASEDCAPTURE and NM_CLICK.
2001-07-26 20:07:23 +00:00
Alexandre Julliard
1922c72b8a
Removed unnecessary inclusion of heap.h.
2001-07-25 00:43:29 +00:00
Alexandre Julliard
5f728cae70
Removed HEAP_strdupA.
2001-07-24 21:45:22 +00:00
Ian Pilcher
d8f2c8b67c
Make built-in font data read-only.
2001-07-24 21:40:15 +00:00
Ian Pilcher
4bc1ebb5ed
Modify init code to handle const data types.
2001-07-24 20:52:19 +00:00
Mike McCormack
e4ca13ea82
Move 16-bit COMM code to USER dll.
2001-07-24 20:49:41 +00:00
Marcus Meissner
c0ccd263a7
OLEAUT32.DllGetClassObject and support for the Ole StdFont added (just
...
giving back a 8 point System font for now).
2001-07-24 00:59:28 +00:00
Patrik Stridvall
4b1574577d
- Made sure that the files that contains the declarations
...
of the implementated functions are included.
- Corrected mismatching prototypes.
- Cleaned up the include section.
2001-07-23 23:50:18 +00:00
Ian Pilcher
d80b7a0776
Use Windows metrics for font scaling.
2001-07-23 23:21:18 +00:00
Marcus Meissner
ff584e4d9c
Pass handle to GetFileType, not MSVCRT fd.
2001-07-23 18:02:18 +00:00
Mike McCormack
fe0529dbea
Rewrite BuildCommDCB16 to depend on BuildCommDCB, not vice-versa.
2001-07-23 17:56:33 +00:00
Ian Pilcher
7dd9ad72be
Only index glyph names when necessary.
2001-07-23 17:48:51 +00:00
Alexandre Julliard
f899ef07a6
Removed some unnecessary includes.
2001-07-23 00:04:00 +00:00
Ian Pilcher
c85b9fddf6
Eliminate UNICODEVECTOR data type.
2001-07-22 23:43:51 +00:00
Alexandre Julliard
6ac3937630
Commented out references to x11drv internals from MESA code.
2001-07-22 23:42:09 +00:00
Alexandre Julliard
0dd55c44a2
Removed some direct accesses to GDI internal pen/brush/font
...
structures.
2001-07-22 23:34:21 +00:00
Alexandre Julliard
6bbc745dde
Moved the 16-bit pointer to the DIB bits out of the driver-specific
...
structure and into the main bitmap structure. Removed
CreateDIBSection16 from the driver interface.
2001-07-22 23:13:08 +00:00
Alexandre Julliard
ef06b4a694
Got rid of HEAP_strdupW.
2001-07-22 23:08:10 +00:00
Ian Pilcher
a9eae850d4
Remove redundant data structure from font metrics.
2001-07-22 23:05:51 +00:00
Marcus Meissner
3f46d3d6a4
OleFont::IDispatch::Invoke stub can just return S_OK.
2001-07-22 23:03:55 +00:00
Alexandre Julliard
8cd1f719bc
Use AdjustWindowRect to translate X to window rectangle instead of
...
duplicating what's done in nonclient.c.
2001-07-20 18:37:37 +00:00
Patrik Stridvall
bc38d6bfde
- Made sure that the files that contains the declarations
...
of the implementated functions are included.
- Corrected mismatching prototypes.
- Cleaned up the include section.
2001-07-20 18:00:00 +00:00
Guy L. Albertelli
ca5757f8c5
- Recalc the toolbar size on TB_SETBUTTONSIZE in certain conditions.
...
- Add trace to show the paint rectangle prior to refreshing.
2001-07-20 17:58:27 +00:00
Guy L. Albertelli
6eb7273e82
- Fix handling of text color.
...
- Correct implementation of WM_SETREDRAW to be closer to native.
- Do more implementation of RBS_AUTOSIZE in the WM_SIZE processor.
- Implement RBBS_VARIABLEHEIGHT. Used by IE4.
- Do more testing in WM_SIZE to handle strange cases like native.
2001-07-20 17:58:12 +00:00
Guy L. Albertelli
d750780f8c
Fix conversion of W structure to A structure during notify.
2001-07-20 17:57:24 +00:00
Mike McCormack
e12d8ae06e
Replace service thread with ReadFileEx/WriteFileEx.
2001-07-20 17:56:37 +00:00
Patrik Stridvall
a5f510f35c
Removed unused file.
2001-07-19 19:17:30 +00:00
Dmitry Timoshkov
822429ad55
Fix out of the source tree build (again).
2001-07-19 19:09:33 +00:00
Alexandre Julliard
37e9503ae8
Moved server.h to include/wine.
2001-07-19 00:39:09 +00:00
Ian Pilcher
020146619c
Read/calculate average character width for all fonts.
...
Work directly with 16-bit WCHARs; don't convert to CP1252.
2001-07-19 00:30:43 +00:00
Ian Pilcher
4194fe48e3
Make Helvetica Narrow a separate font family.
2001-07-19 00:30:15 +00:00
Patrik Stridvall
33929be46f
- Made sure that the files that contains the declarations
...
of implementated functions are included.
- Corrected mismatching prototypes.
- Cleaned up the include section.
2001-07-18 21:04:23 +00:00
Mike McCormack
1e72a3e96b
Use GetCommState16 to save state in OpenComm16.
...
Merge comm16 globals into one structure.
2001-07-18 20:03:11 +00:00
Alexandre Julliard
10c886f050
Updated dependencies.
2001-07-17 00:57:41 +00:00
Mike McCormack
0a17a7c055
Rewrite SetCommState16 to use SetCommState.
2001-07-17 00:57:01 +00:00
Andreas Mohr
26af822102
More descriptive error on buffer overflow.
2001-07-17 00:56:37 +00:00
Andreas Mohr
a49b5be97d
Fixed some more overflowing string traces.
2001-07-17 00:51:00 +00:00
Lionel Ulmer
4a1a8f2b60
Make sure user32 is always loaded before x11drv.
2001-07-17 00:41:24 +00:00
Francois Gouget
3408e9cfd0
Some 'calendar' typos...
2001-07-17 00:40:30 +00:00
Francois Gouget
f8142d3fa5
Added missing CommandLineToArgvW prototype.
2001-07-17 00:39:58 +00:00
Gerard Patel
5aa9754c6a
Refresh bitmap count to take in account imagelist changes after
...
TB_SETIMAGELIST.
2001-07-17 00:39:15 +00:00
Gerard Patel
2d82be84a5
Fixed unicode warning.
2001-07-17 00:38:50 +00:00
Patrik Stridvall
83dbdceba3
Fixed issue found by winapi_check.
2001-07-14 00:49:03 +00:00
Marcus Meissner
1ef0d39c66
Made some FIXME()s print the respective strings passed.
...
Changed StgSetTimes() to correct type.
2001-07-14 00:47:52 +00:00
Marcus Meissner
d2838353ae
Added Quality Box (readonly currently) for 16bit templated dialogs.
...
Added [Printer] button support in 16bit templated dialogs.
Try sending orientation icon to stc10 too.
2001-07-14 00:47:20 +00:00
Marcus Meissner
1884f9b680
Replaced most of the numbers with the symbolic constants of the dialog
...
items.
2001-07-14 00:47:01 +00:00
Mike McCormack
187ed4106d
Rewrite GetCommState16 using GetCommState.
2001-07-14 00:45:58 +00:00
Patrik Stridvall
e9782fa1fc
Documentation fixes.
2001-07-12 22:33:51 +00:00
Mike McCormack
e61ad3a9f3
Implement overlapped completion routines.
...
Don't use lpOverlapped->OffsetHigh to store bytes to transfer.
2001-07-12 22:29:41 +00:00
Lionel Ulmer
1fc39be64f
Fix X crash when running in managed mode.
2001-07-12 22:27:56 +00:00
Patrik Stridvall
4d2b85bf99
Fixed some issues found by winapi_check.
2001-07-12 22:22:23 +00:00
Alexandre Julliard
704d035364
Fixed a few issues with tsx11 locking.
...
Always map the client window when moving out of iconic state.
2001-07-12 02:49:31 +00:00
Lionel Ulmer
aeb92b1ca3
- removed unused OSMesa linking
...
- removed OSMesa code
2001-07-12 02:46:23 +00:00
Mike McCormack
f41de9779c
Implement COMM_MSRUpdate with GetCommModemStatus.
2001-07-12 02:45:25 +00:00
Peter Hunnisett
8cec3cff1e
Added a bunch of entry points.
...
Added some stubs and header information.
Fixed some return codes.
2001-07-11 20:19:06 +00:00
Uwe Bonnes
e0cef27056
Semistubs for _ismbcdigit,_ismbcspace,_mbslwr,_mbsnbcmp,_mbsspn.
2001-07-11 20:13:14 +00:00
Patrik Stridvall
044855c6ec
Documentation fixes.
2001-07-11 18:56:41 +00:00
Mike McCormack
d342ed2bc0
Implement FlushComm16 with PurgeComm.
2001-07-11 17:26:57 +00:00
Mike McCormack
140cec5b6d
Stub some rasapi functions.
2001-07-11 17:25:03 +00:00
Marcus Meissner
22255b3256
Have InternetGetConnectedState always return 'LAN connection'.
2001-07-11 17:24:39 +00:00
Mike McCormack
de7c3003e2
Start implementing named pipes.
2001-07-10 19:16:49 +00:00
Peter Hunnisett
d50a5b3f0a
Add shlwapi.wvnsprintf[AW], header info and comments.
2001-07-10 19:12:40 +00:00
Peter Hunnisett
7736876afd
Implemented a stub for WSARecvFrom.
2001-07-10 19:09:59 +00:00
Mike McCormack
4be97b6696
Rewrite EscapeCommFunction16 to use EscapeCommFunction.
2001-07-10 19:05:30 +00:00
Peter Hunnisett
e3454c78ba
CreateFile should be called with security attributes in _open.
2001-07-10 19:03:46 +00:00
Marcus Meissner
6e24312af5
Make (G|S)etClipList not abort, but return DDERR_NOCLIPLIST.
...
Do not scroll FIXME()s too much.
2001-07-10 19:03:15 +00:00
Patrik Stridvall
655b2044d9
Fixed issues found by winapi_check.
2001-07-08 22:32:51 +00:00
Patrik Stridvall
3e3194f68b
- Added comment that code is broken.
...
- Silenced annoying long term winapi_check message.
2001-07-08 22:31:29 +00:00
Patrik Stridvall
09da966c8c
Add proper check for existance of struct sockaddr member sa_len.
2001-07-08 22:30:50 +00:00
Peter Hunnisett
14e690f47f
Fix some ordinal forwarding.
2001-07-08 20:32:42 +00:00
Guy L. Albertelli
2420fa983d
- Move creation process to the WM_NCCREATE message like native and force
...
styles WS_VISIBLE and CCS_TOP.
- Implement messages WM_NCHITTEST, WM_STYLECHANGED, RB_MOVEBAND,
RB_MINIMIZEBAND.
- Improve preformance by removing calls to GetWindowLong for GWL_STYLE
(by saving state and handling WM_STYLECHANGED).
- Cleanup and remove dead and test code.
2001-07-08 20:31:11 +00:00
Mike McCormack
db718970d3
Use HANDLEs instead of unix fds.
2001-07-08 20:28:55 +00:00
Patrik Stridvall
01d5e5b071
Documentation fixes.
2001-07-02 19:59:40 +00:00
Hidenori Takeshima
b7d4b4e73b
Added stubs for quartz.dll.
2001-07-02 18:57:22 +00:00
Mike McCormack
838a3614f6
Declare stubs for ReadFileEx, WriteFileEx.
2001-07-02 18:56:01 +00:00
Dmitry Timoshkov
7aa8694908
Fix some inter dll dependencies.
2001-07-02 18:02:10 +00:00
Dmitry Timoshkov
07b4422a01
Add stdcall->cdecl thunks for inet_network and getnetbyname.
2001-07-02 18:01:41 +00:00