Changeset 1430
- Timestamp:
- Oct 25, 1999, 12:48:42 AM (26 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
changelog (modified) (1 diff)
-
include/vmutex.h (modified) (3 diffs)
-
include/win/virtual.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r1428 r1430 1 /* $Id: changelog,v 1.36 0 1999-10-24 12:29:50sandervl Exp $ */1 /* $Id: changelog,v 1.361 1999-10-24 22:47:51 sandervl Exp $ */ 2 2 3 3 99-10-24: Sander van Leeuwen <sandervl@xs4all.nl> 4 4 - USER32: MDI window fixes (mdi children correctly activated; menus inserted) 5 Bugfix in WM_GETTEXT of Edit control (wrong string length) 6 Only create global classes when CS_GLOBALCLASS flag specified 7 Create system classes only every first time user32 is loaded 8 and only unregister them when the last win32 app quits. 9 Converted all OS/2 bitmaps to windows format and put them in user32.rc 10 (deleted all bmp files) 11 - USER32, 12 COMCTL32, 13 SHELL32: Don't check if control atom already exists, always register 14 control. 15 NOTE: Global classes have a global atom, but the class objects 16 are NOT shared! (so you must recreate them for every app) 17 18 - KERNEL32: Implemented shared memory mapped files (SDK memory sample 19 works for shared memory; haven't tested files and it requires 20 more testing!) 21 Added shared heap code for memory mapped objects 5 22 6 23 99-10-24: Daniela Engert <dani@ngrt.de> -
trunk/include/vmutex.h
r731 r1430 1 /* $Id: vmutex.h,v 1. 3 1999-08-28 19:34:26sandervl Exp $ */1 /* $Id: vmutex.h,v 1.4 1999-10-24 22:48:17 sandervl Exp $ */ 2 2 3 3 /* … … 12 12 #define VMUTEX_WAIT_FOREVER -1 13 13 14 #define VMUTEX_NONSHARED 0 15 #define VMUTEX_SHARED 1 16 14 17 #ifdef _OS2WIN_H 15 18 #define HMTX DWORD … … 19 22 { 20 23 public: 21 VMutex (int fShared = FALSE);24 VMutex (int fShared = VMUTEX_NONSHARED); 22 25 ~VMutex(); 23 26 -
trunk/include/win/virtual.h
r685 r1430 1 /* $Id: virtual.h,v 1. 2 1999-08-25 12:29:26sandervl Exp $ */1 /* $Id: virtual.h,v 1.3 1999-10-24 22:48:42 sandervl Exp $ */ 2 2 3 3 /* … … 13 13 HANDLE WINAPI VIRTUAL_MapFileW( LPCWSTR name , LPVOID *lpMapping); 14 14 15 LPVOID VirtualAllocShared(DWORD cbSize, DWORD fdwAllocationType, 16 DWORD fdwProtect, LPSTR name); 17 15 18 #ifndef _OS2WIN_H 16 19 void WINAPI CloseHandle(HANDLE hHandle);
Note:
See TracChangeset
for help on using the changeset viewer.
