92 lines
2.6 KiB
C
92 lines
2.6 KiB
C
|
/*
|
||
|
* IMAGEHLP library
|
||
|
*
|
||
|
* Copyright 1998 Patrik Stridvall
|
||
|
*/
|
||
|
|
||
|
#include "windows.h"
|
||
|
#include "winerror.h"
|
||
|
#include "wintypes.h"
|
||
|
#include "debug.h"
|
||
|
#include "imagehlp.h"
|
||
|
|
||
|
/***********************************************************************
|
||
|
* ImageAddCertificate32 (IMAGEHLP.10)
|
||
|
*/
|
||
|
|
||
|
BOOL32 WINAPI ImageAddCertificate32(
|
||
|
HANDLE32 FileHandle, PWIN_CERTIFICATE32 Certificate, PDWORD Index)
|
||
|
{
|
||
|
FIXME(imagehlp, "(0x%08x, %p, %p): stub\n",
|
||
|
FileHandle, Certificate, Index
|
||
|
);
|
||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
/***********************************************************************
|
||
|
* ImageEnumerateCertificates32 (IMAGEHLP.12)
|
||
|
*/
|
||
|
BOOL32 WINAPI ImageEnumerateCertificates32(
|
||
|
HANDLE32 FileHandle, WORD TypeFilter, PDWORD CertificateCount,
|
||
|
PDWORD Indices, DWORD IndexCount)
|
||
|
{
|
||
|
FIXME(imagehlp, "(0x%08x, %hd, %p, %p, %ld): stub\n",
|
||
|
FileHandle, TypeFilter, CertificateCount, Indices, IndexCount
|
||
|
);
|
||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
/***********************************************************************
|
||
|
* ImageGetCertificateData32 (IMAGEHLP.13)
|
||
|
*/
|
||
|
BOOL32 WINAPI ImageGetCertificateData32(
|
||
|
HANDLE32 FileHandle, DWORD CertificateIndex,
|
||
|
PWIN_CERTIFICATE32 Certificate, PDWORD RequiredLength)
|
||
|
{
|
||
|
FIXME(imagehlp, "(0x%08x, %ld, %p, %p): stub\n",
|
||
|
FileHandle, CertificateIndex, Certificate, RequiredLength
|
||
|
);
|
||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
/***********************************************************************
|
||
|
* ImageGetCertificateHeader32 (IMAGEHLP.14)
|
||
|
*/
|
||
|
BOOL32 WINAPI ImageGetCertificateHeader32(
|
||
|
HANDLE32 FileHandle, DWORD CertificateIndex,
|
||
|
PWIN_CERTIFICATE32 Certificateheader)
|
||
|
{
|
||
|
FIXME(imagehlp, "(0x%08x, %ld, %p): stub\n",
|
||
|
FileHandle, CertificateIndex, Certificateheader
|
||
|
);
|
||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
/***********************************************************************
|
||
|
* ImageGetDigestStream32 (IMAGEHLP.15)
|
||
|
*/
|
||
|
BOOL32 WINAPI ImageGetDigestStream32(
|
||
|
HANDLE32 FileHandle, DWORD DigestLevel,
|
||
|
DIGEST_FUNCTION32 DigestFunction, DIGEST_HANDLE32 DigestHandle)
|
||
|
{
|
||
|
FIXME(imagehlp, "(%0x08x, %ld, %p, %p): stub\n",
|
||
|
FileHandle, DigestLevel, DigestFunction, DigestHandle
|
||
|
);
|
||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
/***********************************************************************
|
||
|
* ImageRemoveCertificate32 (IMAGEHLP.18)
|
||
|
*/
|
||
|
BOOL32 WINAPI ImageRemoveCertificate32(HANDLE32 FileHandle, DWORD Index)
|
||
|
{
|
||
|
FIXME(imagehlp, "(0x%08x, %ld): stub\n", FileHandle, Index);
|
||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||
|
return FALSE;
|
||
|
}
|