- Implement DecryptFileA

- Fix some stubs
- Remove dead code

svn path=/trunk/; revision=22272
This commit is contained in:
Hervé Poussineau 2006-06-07 17:26:25 +00:00
parent f326c55403
commit 9d4e17c705
2 changed files with 31 additions and 52 deletions

View file

@ -527,17 +527,34 @@ BuildSecurityDescriptorA(IN PTRUSTEE_A pOwner OPTIONAL,
*/ */
BOOL WINAPI DecryptFileW(LPCWSTR lpFileName, DWORD dwReserved) BOOL WINAPI DecryptFileW(LPCWSTR lpFileName, DWORD dwReserved)
{ {
DPRINT1("%s() not implemented!\n", __FUNCTION__); DPRINT1("%s(%S) not implemented!\n", __FUNCTION__, lpFileName);
return ERROR_CALL_NOT_IMPLEMENTED; SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
} }
/* /*
* @unimplemented * @implemented
*/ */
BOOL WINAPI DecryptFileA(LPCSTR lpFileName, DWORD dwReserved) BOOL WINAPI DecryptFileA(LPCSTR lpFileName, DWORD dwReserved)
{ {
DPRINT1("%s() not implemented!\n", __FUNCTION__); UNICODE_STRING FileName;
return ERROR_CALL_NOT_IMPLEMENTED; NTSTATUS Status;
BOOL ret = FALSE;
FileName.Buffer = NULL;
Status = RtlCreateUnicodeStringFromAsciiz(&FileName, lpFileName);
if (!NT_SUCCESS(Status))
{
SetLastError(RtlNtStatusToDosError(Status));
goto cleanup;
}
ret = DecryptFileW(FileName.Buffer, dwReserved);
cleanup:
if (FileName.Buffer != NULL)
RtlFreeUnicodeString(&FileName);
return ret;
} }
/* /*
@ -546,7 +563,8 @@ BOOL WINAPI DecryptFileA(LPCSTR lpFileName, DWORD dwReserved)
BOOL WINAPI EncryptFileW(LPCWSTR lpFileName) BOOL WINAPI EncryptFileW(LPCWSTR lpFileName)
{ {
DPRINT1("%s() not implemented!\n", __FUNCTION__); DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED; SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
} }
/* /*
@ -555,7 +573,8 @@ BOOL WINAPI EncryptFileW(LPCWSTR lpFileName)
BOOL WINAPI EncryptFileA(LPCSTR lpFileName) BOOL WINAPI EncryptFileA(LPCSTR lpFileName)
{ {
DPRINT1("%s() not implemented!\n", __FUNCTION__); DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED; SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
} }
BOOL WINAPI ConvertSecurityDescriptorToStringSecurityDescriptorW( BOOL WINAPI ConvertSecurityDescriptorToStringSecurityDescriptorW(
@ -566,7 +585,8 @@ BOOL WINAPI ConvertSecurityDescriptorToStringSecurityDescriptorW(
PULONG pulong) PULONG pulong)
{ {
DPRINT1("%s() not implemented!\n", __FUNCTION__); DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED; SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
} }
BOOL WINAPI ConvertSecurityDescriptorToStringSecurityDescriptorA( BOOL WINAPI ConvertSecurityDescriptorToStringSecurityDescriptorA(
@ -577,7 +597,8 @@ BOOL WINAPI ConvertSecurityDescriptorToStringSecurityDescriptorA(
PULONG pulong) PULONG pulong)
{ {
DPRINT1("%s() not implemented!\n", __FUNCTION__); DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED; SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
} }
/* EOF */ /* EOF */

View file

@ -1374,7 +1374,7 @@ OpenServiceW(SC_HANDLE hSCManager,
(unsigned int*)&hService); (unsigned int*)&hService);
if (dwError != ERROR_SUCCESS) if (dwError != ERROR_SUCCESS)
{ {
DPRINT1("ScmrOpenServiceW() failed (Error %lu)\n", dwError); DPRINT("ScmrOpenServiceW() failed (Error %lu)\n", dwError);
SetLastError(dwError); SetLastError(dwError);
return NULL; return NULL;
} }
@ -1923,27 +1923,6 @@ StartServiceA(SC_HANDLE hService,
DWORD dwNumServiceArgs, DWORD dwNumServiceArgs,
LPCSTR *lpServiceArgVectors) LPCSTR *lpServiceArgVectors)
{ {
#if 0
DWORD dwError;
DPRINT("StartServiceA()\n");
HandleBind();
/* Call to services.exe using RPC */
dwError = ScmrStartServiceA(BindingHandle,
hService,
dwNumServiceArgs,
lpServiceArgVectors);
if (dwError != ERROR_SUCCESS)
{
DPRINT1("ScmrStartServiceA() failed (Error %lu)\n", dwError);
SetLastError(dwError);
return FALSE;
}
return TRUE;
#endif
LPSTR lpBuffer; LPSTR lpBuffer;
LPSTR lpStr; LPSTR lpStr;
DWORD dwError; DWORD dwError;
@ -2000,27 +1979,6 @@ StartServiceW(SC_HANDLE hService,
DWORD dwNumServiceArgs, DWORD dwNumServiceArgs,
LPCWSTR *lpServiceArgVectors) LPCWSTR *lpServiceArgVectors)
{ {
#if 0
DWORD dwError;
DPRINT("StartServiceW()\n");
HandleBind();
/* Call to services.exe using RPC */
dwError = ScmrStartServiceW(BindingHandle,
hService,
dwNumServiceArgs,
lpServiceArgVectors);
if (dwError != ERROR_SUCCESS)
{
DPRINT1("ScmrStartServiceW() failed (Error %lu)\n", dwError);
SetLastError(dwError);
return FALSE;
}
return TRUE;
#endif
LPWSTR lpBuffer; LPWSTR lpBuffer;
LPWSTR lpStr; LPWSTR lpStr;
DWORD dwError; DWORD dwError;