mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
- Removed IsTextUnicode stub and replaced it with forwarding to NTDLL.RtlIsTextUnicode.
svn path=/trunk/; revision=8400
This commit is contained in:
parent
30830340a8
commit
803e8a4b0f
3 changed files with 3 additions and 21 deletions
|
@ -1,4 +1,4 @@
|
|||
; $Id: advapi32.edf,v 1.31 2004/02/26 00:33:09 sedwards Exp $
|
||||
; $Id: advapi32.edf,v 1.32 2004/02/26 16:16:17 navaraf Exp $
|
||||
;
|
||||
; advapi32.edf
|
||||
;
|
||||
|
@ -182,7 +182,7 @@ InitiateSystemShutdownA=InitiateSystemShutdownA@20
|
|||
InitiateSystemShutdownW=InitiateSystemShutdownW@20
|
||||
;IsAccessPermittedA=IsAccessPermittedA@20
|
||||
;IsAccessPermittedW=IsAccessPermittedW@20
|
||||
IsTextUnicode=IsTextUnicode@12
|
||||
IsTextUnicode=NTDLL.RtlIsTextUnicode@12
|
||||
IsValidAcl=IsValidAcl@4
|
||||
IsValidSecurityDescriptor=IsValidSecurityDescriptor@4
|
||||
IsValidSid=IsValidSid@4
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: makefile,v 1.35 2004/02/26 00:33:09 sedwards Exp $
|
||||
# $Id: makefile,v 1.36 2004/02/26 16:16:18 navaraf Exp $
|
||||
|
||||
PATH_TO_TOP = ../..
|
||||
|
||||
|
@ -21,7 +21,6 @@ MISC_OBJECTS = \
|
|||
misc/logon.o \
|
||||
misc/shutdown.o \
|
||||
misc/sysfunc.o \
|
||||
misc/text.o
|
||||
|
||||
REGISTRY_OBJECTS = \
|
||||
reg/reg.o
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
/* $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;
|
||||
}
|
Loading…
Reference in a new issue