mirror of
https://github.com/reactos/wine.git
synced 2025-02-11 15:17:12 +00:00
![Alexandre Julliard](/assets/img/avatar_default.png)
Mon May 23 15:07:36 1994 Bob Amstadt (bob@pooh) * [loader/selector.c] Allocate heap and stack segments as 64k. Sat May 21 01:15:49 1994 Rick Sladkey (jrs@world.std.com) * [loader/selector.c] Correct typos where memcpy is used instead of memset. * [loader/resource.c] Allow for legitimate cases where biSizeImage is 0 in LoadIcon by calculating the value when the bitmap is not compressed. * [miscemu/int21.c] Fix NULL dereference caused by superfluous DOS_closedir in FindNext. * [loader/resource.c] New function type_match to handle string resource types as well as IDs. In addition, compare only low 4 bits of type_id when both numbers are IDs so that 0x0002 matches 0x8002. In FindResourceByNumber and FindResourceByName use type_match instead of comparing numbers. In FindResource handle the "#number" syntax and empty strings in both the resource and type names. Mon May 23 00:48:25 1994 Rick Sladkey (jrs@world.std.com) * [windows/dialog.c] Fix inadvertent printing of string IDs as strings. May 23, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte) * [controls/menu.c] New functions GetMenuItemCount(), GetMenuItemID(). GetMenuString() & HiliteMenuItem(). Bug fix in CheckMenuItem(). Function SetMenu() now make client area recalc if menu removed. * [windows/winpos.c] Bug fix in SetWindowPos(), no more XMapping or XConfiguring of windows with initial width or height equal zero. * [objects/gdiobj.c] New function EnumObjects(), using new lpPenBrushList buildup from calls to new function GDI_AppendToPenBrushList(). ('pbrush.exe' don't show its face yet ! ... :-( ) New EMPTY STUB for function SetObjectOwner(), ('mplayer.exe' call it via GetProcAddress() ...) * [objects/font.c] New internal functions ParseFontParms() & InitFontsList(). EnumFonts() & EnumFontFamilies() enumerates fonts (no more dummies). FONT_MatchFont now make retries to find closest-smallest font. ('charmap.exe' can now show the differents fonts available) * [windows/nonclient.c] Use small dos OBM_OLD_CLOSE button for MDI windows. * [windows/graphics.c] [objects/bitmap.c] Start to remove obsolete globals such XT_screen ... * [loader/library.c] Make function GetProcAddress() working also with builtin DLLs. Tue May 24 20:18:02 1994 Erik Bos (erik@hacktic.nl) * [if1632/system.spec] [if1632/toolhelp.spec] system.dll & toolhelp.dll added. * [loader/library.c] Modified GetModuleFileName() to return the full filename. Added a check to LoadLibrary() to prevent loading built in dlls. (eg. user.exe) Added a check to FreeLibrary() to prevent built-in dlls from being freed. Modified GetProcAddress() to support builtin dlls. * [loader/signal.c] [miscemu/int2f.c] Added => pifedit runs. * [misc/dos_fs.c] Added a NULL-ptr check to DOS_closedir().
224 lines
4.9 KiB
C
224 lines
4.9 KiB
C
static char Copyright[] = "Copyright Yngvi Sigurjonsson (yngvi@hafro.is), 1993";
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <sys/types.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
|
|
#include "prototypes.h"
|
|
#include "regfunc.h"
|
|
#include "windows.h"
|
|
|
|
|
|
/* Funny to divide them between user and kernel. */
|
|
|
|
/* KERNEL.89 */
|
|
LPSTR lstrcat(LPSTR target,LPCSTR source)
|
|
{
|
|
#ifdef DEBUG_STRING
|
|
fprintf(stderr,"lstrcat(%s,%s)\n",target,source);
|
|
#endif
|
|
return strcat(target,source);
|
|
}
|
|
|
|
/* USER.430 */
|
|
INT lstrcmp(LPCSTR str1,LPCSTR str2)
|
|
{
|
|
return strcmp(str1,str2);
|
|
}
|
|
|
|
/* USER.471 */
|
|
INT lstrcmpi(LPCSTR str1,LPCSTR str2)
|
|
{
|
|
int i;
|
|
i=0;
|
|
while((toupper(str1[i])==toupper(str2[i]))&&(str1[i]!=0))
|
|
i++;
|
|
return toupper(str1[i])-toupper(str2[i]);
|
|
}
|
|
|
|
/* KERNEL.88 */
|
|
LPSTR lstrcpy(LPSTR target,LPCSTR source)
|
|
{
|
|
return strcpy(target,source);
|
|
}
|
|
|
|
/* KERNEL.353 */
|
|
LPSTR lstrcpyn(LPSTR target,LPCSTR source,int n)
|
|
{
|
|
return strncpy(target,source,n);
|
|
}
|
|
|
|
/* KERNEL.90 */
|
|
INT lstrlen(LPCSTR str)
|
|
{
|
|
return strlen(str);
|
|
}
|
|
|
|
|
|
/* AnsiUpper USER.431 */
|
|
char FAR* AnsiUpper(char FAR* strOrChar)
|
|
{
|
|
/* I am not sure if the locale stuff works with toupper, but then again
|
|
I am not sure if the Linux libc locale stuffs works at all */
|
|
/* if((int)strOrChar<256)
|
|
return (char FAR*) toupper((int)strOrChar);
|
|
else {
|
|
int i;
|
|
for(i=0;(i<65536) && strOrChar[i];i++)
|
|
strOrChar[i]=toupper(strOrChar[i]);
|
|
return strOrChar;
|
|
} */
|
|
int i;
|
|
for (i = 0; (i < 65536 && strOrChar[i]);i++)
|
|
strOrChar[i] = (strOrChar[i] >= 'a' && strOrChar[i] <= 'z') ?
|
|
strOrChar[i] - ('a' - 'A') : strOrChar[i];
|
|
return strOrChar;
|
|
}
|
|
|
|
/* AnsiLower USER.432 */
|
|
char FAR* AnsiLower(char FAR* strOrChar)
|
|
{
|
|
/* I am not sure if the locale stuff works with tolower, but then again
|
|
I am not sure if the Linux libc locale stuffs works at all */
|
|
/* if((int)strOrChar<256)
|
|
return (char FAR*)tolower((int)strOrChar);
|
|
else {
|
|
int i;
|
|
for(i=0;(i<65536)&&strOrChar[i];i++)
|
|
strOrChar[i]=tolower(strOrChar[i]);
|
|
return strOrChar;
|
|
}*/
|
|
int i;
|
|
for (i = 0; (i < 65536 && strOrChar[i]);i++)
|
|
strOrChar[i] = (strOrChar[i] >= 'A' && strOrChar[i] <= 'Z') ?
|
|
strOrChar[i] + ('a' - 'A') : strOrChar[i];
|
|
}
|
|
|
|
/* AnsiUpperBuff USER.437 */
|
|
UINT AnsiUpperBuff(LPSTR str,UINT len)
|
|
{
|
|
int i;
|
|
len=(len==0)?65536:len;
|
|
|
|
for(i=0;i<len;i++)
|
|
str[i]=toupper(str[i]);
|
|
return i;
|
|
}
|
|
|
|
/* AnsiLowerBuff USER.438 */
|
|
UINT AnsiLowerBuff(LPSTR str,UINT len)
|
|
{
|
|
int i;
|
|
len=(len==0)?65536:len;
|
|
i=0;
|
|
|
|
for(i=0;i<len;i++)
|
|
str[i]=tolower(str[i]);
|
|
|
|
return i;
|
|
}
|
|
|
|
/* AnsiNext USER.472 */
|
|
LPSTR AnsiNext(LPSTR current)
|
|
{
|
|
return (*current)?current+1:current;
|
|
}
|
|
|
|
/* AnsiPrev USER.473 */
|
|
char FAR* AnsiPrev(/*const*/ char FAR* start,char FAR* current)
|
|
{
|
|
return (current==start)?start:current-1;
|
|
}
|
|
|
|
/* IsCharAlpha USER 433 */
|
|
BOOL IsCharAlpha(char ch)
|
|
{
|
|
return isalpha(ch); /* This is probably not right for NLS */
|
|
}
|
|
/* IsCharAlphanumeric USER 434 */
|
|
BOOL IsCharAlphanumeric(char ch)
|
|
{
|
|
return (ch<'0')?0:(ch<'9');
|
|
}
|
|
|
|
/* IsCharUpper USER 435 */
|
|
BOOL IsCharUpper(char ch)
|
|
{
|
|
return isupper(ch);
|
|
}
|
|
|
|
/* IsCharUpper USER 436 */
|
|
BOOL IsCharLower(char ch)
|
|
{
|
|
return islower(ch);
|
|
}
|
|
|
|
static char Oem2Ansi[256];
|
|
static char Ansi2Oem[256];
|
|
|
|
void InitOemAnsiTranslations(void)
|
|
{
|
|
static int inited=0; /* should called called in some init function*/
|
|
int transfile,i;
|
|
if(inited) return;
|
|
if(transfile=open("oem2ansi.trl",O_RDONLY)){
|
|
read(transfile,Oem2Ansi,256);
|
|
close(transfile);
|
|
}
|
|
else { /* sets up passive translations if it does not find the file */
|
|
for(i=0;i<256;i++) /* Needs some fixing */
|
|
Oem2Ansi[i]=i;
|
|
}
|
|
if(transfile=open("ansi2oem.trl",O_RDONLY)){
|
|
read(transfile,Ansi2Oem,256);
|
|
close(transfile);
|
|
}
|
|
else { /* sets up passive translations if it does not find the file */
|
|
for(i=0;i<256;i++) /* Needs some fixing */
|
|
Ansi2Oem[i]=i;
|
|
}
|
|
inited=1;
|
|
}
|
|
|
|
/* AnsiToOem Keyboard.5 */
|
|
INT AnsiToOem(LPSTR lpAnsiStr, LPSTR lpOemStr) /* why is this int ??? */
|
|
{
|
|
InitOemAnsiTranslations(); /* should called called in some init function*/
|
|
while(*lpAnsiStr){
|
|
*lpOemStr++=Ansi2Oem[*lpAnsiStr++];
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
/* OemToAnsi Keyboard.6 */
|
|
BOOL OemToAnsi(LPSTR lpOemStr, LPSTR lpAnsiStr) /* why is this BOOL ???? */
|
|
{
|
|
InitOemAnsiTranslations(); /* should called called in some init function*/
|
|
while(*lpOemStr){
|
|
*lpAnsiStr++=Oem2Ansi[*lpOemStr++];
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
/* AnsiToOemBuff Keyboard.134 */
|
|
void AnsiToOemBuff(LPSTR lpAnsiStr, LPSTR lpOemStr, INT nLength)
|
|
{
|
|
int i;
|
|
InitOemAnsiTranslations(); /* should called called in some init function*/
|
|
for(i=0;i<nLength;i++)
|
|
lpOemStr[i]=Ansi2Oem[lpAnsiStr[i]];
|
|
}
|
|
|
|
/* OemToAnsi Keyboard.135 */
|
|
void OemToAnsiBuff(LPSTR lpOemStr, LPSTR lpAnsiStr, INT nLength)
|
|
{
|
|
int i;
|
|
InitOemAnsiTranslations(); /* should called called in some init function*/
|
|
for(i=0;i<nLength;i++)
|
|
lpAnsiStr[i]=Oem2Ansi[lpOemStr[i]];
|
|
}
|