Enable stubs for a few functions needed by dependancy walker.

Add new file stubs.c for the functions I didnt know where to place.

svn path=/trunk/; revision=4976
This commit is contained in:
Steven Edwards 2003-06-27 15:19:19 +00:00
parent f99f43d367
commit bf1abd5a1c
6 changed files with 162 additions and 14 deletions

View file

@ -4,8 +4,10 @@
* FILE: lib/advapi32/sec/sec.c
* PURPOSE: Registry functions
* PROGRAMMER: Ariadne ( ariadne@xs4all.nl)
* Steven Edwards ( Steven_Ed4153@yahoo.com )
* UPDATE HISTORY:
* Created 01/11/98
* Added a few new stubs 6/27/03
*/
#define NTOS_MODE_USER
@ -363,4 +365,40 @@ GetUserNameW(LPWSTR lpBuffer, LPDWORD nSize)
return(FALSE);
}
WINBOOL
STDCALL
GetFileSecurityA (
LPCSTR lpFileName,
SECURITY_INFORMATION RequestedInformation,
PSECURITY_DESCRIPTOR pSecurityDescriptor,
DWORD nLength,
LPDWORD lpnLengthNeeded
)
{
return(FALSE);
}
WINBOOL
STDCALL
GetFileSecurityW (
LPCWSTR lpFileName,
SECURITY_INFORMATION RequestedInformation,
PSECURITY_DESCRIPTOR pSecurityDescriptor,
DWORD nLength,
LPDWORD lpnLengthNeeded
)
{
return(FALSE);
}
WINBOOL
STDCALL
SetFileSecurityA (
LPCSTR lpFileName,
SECURITY_INFORMATION SecurityInformation,
PSECURITY_DESCRIPTOR pSecurityDescriptor
)
{
return(FALSE);
}
/* EOF */