Added stub of IsTextUnicode to get notepad working again......

.....The next time someone submits copyrighted code and it makes it in to CVS
the contributor and the person that committed it are going to get a visit from me.

svn path=/trunk/; revision=8393
This commit is contained in:
Steven Edwards 2004-02-26 00:33:09 +00:00
parent 23cc7e88c1
commit 8e76a54705
4 changed files with 24 additions and 6 deletions

View file

@ -1,4 +1,4 @@
; $Id: advapi32.def,v 1.14 2004/02/25 23:54:12 sedwards Exp $
; $Id: advapi32.def,v 1.15 2004/02/26 00:33:09 sedwards Exp $
;
; advapi32.def
;
@ -186,7 +186,7 @@ InitiateSystemShutdownA@20
InitiateSystemShutdownW@20
;IsAccessPermittedA@20
;IsAccessPermittedW@20
;IsTextUnicode@12
IsTextUnicode@12
IsValidAcl@4
IsValidSecurityDescriptor@4
IsValidSid@4

View file

@ -1,4 +1,4 @@
; $Id: advapi32.edf,v 1.30 2004/02/25 23:54:12 sedwards Exp $
; $Id: advapi32.edf,v 1.31 2004/02/26 00:33:09 sedwards Exp $
;
; advapi32.edf
;
@ -182,7 +182,7 @@ InitiateSystemShutdownA=InitiateSystemShutdownA@20
InitiateSystemShutdownW=InitiateSystemShutdownW@20
;IsAccessPermittedA=IsAccessPermittedA@20
;IsAccessPermittedW=IsAccessPermittedW@20
;IsTextUnicode=IsTextUnicode@12
IsTextUnicode=IsTextUnicode@12
IsValidAcl=IsValidAcl@4
IsValidSecurityDescriptor=IsValidSecurityDescriptor@4
IsValidSid=IsValidSid@4

View file

@ -1,4 +1,4 @@
# $Id: makefile,v 1.34 2004/02/25 23:12:39 sedwards Exp $
# $Id: makefile,v 1.35 2004/02/26 00:33:09 sedwards Exp $
PATH_TO_TOP = ../..
@ -20,7 +20,8 @@ MISC_OBJECTS = \
misc/hwprofiles.o \
misc/logon.o \
misc/shutdown.o \
misc/sysfunc.o
misc/sysfunc.o \
misc/text.o
REGISTRY_OBJECTS = \
reg/reg.o

View file

@ -0,0 +1,17 @@
/* $Id: text.c,v 1.1 2004/02/26 00:33:09 sedwards Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: lib/advapi32/misc/text.c
* PURPOSE: advapi32.dll Text Functions
* PROGRAMMER: Steven Edwards
* UPDATE HISTORY:
* 20042502
*/
#include <windows.h>
BOOL STDCALL IsTextUnicode(CONST VOID* pbuffer, int cb, LPINT lpi)
{
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}