Changeset 1130
- Timestamp:
- Oct 4, 1999, 10:51:52 PM (26 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
changelog (modified) (3 diffs)
-
include/heapstring.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r1128 r1130 1 /* $Id: changelog,v 1.26 8 1999-10-04 19:11:04 sandervl Exp $ */1 /* $Id: changelog,v 1.269 1999-10-04 20:51:34 sandervl Exp $ */ 2 2 3 3 99-10-04: Patrick Haller <phaller@gmx.net> … … 13 13 - USER32: Deleted dialog.cpp 14 14 Set last error to 0 if dialog creation succeeds. 15 Added flag to distinguish between messages sent by PM and 16 those sent by apps 17 Handle WM_SETTEXT messages passed to default window handler 18 (only if not sent by PM) 19 - VERSION: Fix for string compares in VersionInfo32_FindChild (has 20 to be a lstrcmpniW) 15 21 - SHELL32: Removed nameid.h include in she.cpp & sh.cpp. Fixed makefile 16 22 addition for export library (extra ".." for tool path) … … 20 26 Fixed module name lookup for win32 images executed by the PE 21 27 loader. (can't use OSLibQueryModuleHandle for those) 28 Added lstrcmpniW function 29 Set full path for LX images 30 Support for retrieving the first resource of a certain type 31 (version ids no longer hardcoded as id 1; just get the first one 32 present) 22 33 23 34 99-10-04: Jens Wiessner <wiessnej@rfi.de> -
trunk/include/heapstring.h
r970 r1130 1 /* $Id: heapstring.h,v 1. 5 1999-09-18 15:55:45sandervl Exp $ */1 /* $Id: heapstring.h,v 1.6 1999-10-04 20:51:52 sandervl Exp $ */ 2 2 3 3 /* … … 23 23 int WIN32API lstrncmpW (LPCWSTR arg1, LPCWSTR arg2, int i); 24 24 int WIN32API lstrncmpiA (LPCSTR arg1, LPCSTR arg2, int i); 25 int WIN32API lstrncmpiW (LPCWSTR arg1, LPCWSTR arg2, int i); 26 #define lstrcmpniW lstrncmpiW 25 27 LPSTR WIN32API lstrcpyA (LPSTR arg1, LPCSTR arg2); 26 28 LPWSTR WIN32API lstrcpyW (LPWSTR dest, LPCWSTR src);
Note:
See TracChangeset
for help on using the changeset viewer.
