Fix the conversion of MS style '#line' directives to gcc style.
[wine.git] / dlls / imagehlp / integrity.c
blobe6e7b6742c0332eeea8641e72c2685f5c1b442c0
1 /*
2 * IMAGEHLP library
4 * Copyright 1998 Patrik Stridvall
5 */
7 #include "windef.h"
8 #include "winbase.h"
9 #include "winerror.h"
10 #include "imagehlp.h"
11 #include "debugtools.h"
13 DEFAULT_DEBUG_CHANNEL(imagehlp);
15 /***********************************************************************
16 * ImageAddCertificate (IMAGEHLP.@)
19 BOOL WINAPI ImageAddCertificate(
20 HANDLE FileHandle, PWIN_CERTIFICATE Certificate, PDWORD Index)
22 FIXME("(0x%08x, %p, %p): stub\n",
23 FileHandle, Certificate, Index
25 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
26 return FALSE;
29 /***********************************************************************
30 * ImageEnumerateCertificates (IMAGEHLP.@)
32 BOOL WINAPI ImageEnumerateCertificates(
33 HANDLE FileHandle, WORD TypeFilter, PDWORD CertificateCount,
34 PDWORD Indices, DWORD IndexCount)
36 FIXME("(0x%08x, %hd, %p, %p, %ld): stub\n",
37 FileHandle, TypeFilter, CertificateCount, Indices, IndexCount
39 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
40 return FALSE;
43 /***********************************************************************
44 * ImageGetCertificateData (IMAGEHLP.@)
46 BOOL WINAPI ImageGetCertificateData(
47 HANDLE FileHandle, DWORD CertificateIndex,
48 PWIN_CERTIFICATE Certificate, PDWORD RequiredLength)
50 FIXME("(0x%08x, %ld, %p, %p): stub\n",
51 FileHandle, CertificateIndex, Certificate, RequiredLength
53 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
54 return FALSE;
57 /***********************************************************************
58 * ImageGetCertificateHeader (IMAGEHLP.@)
60 BOOL WINAPI ImageGetCertificateHeader(
61 HANDLE FileHandle, DWORD CertificateIndex,
62 PWIN_CERTIFICATE Certificateheader)
64 FIXME("(0x%08x, %ld, %p): stub\n",
65 FileHandle, CertificateIndex, Certificateheader
67 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
68 return FALSE;
71 /***********************************************************************
72 * ImageGetDigestStream (IMAGEHLP.@)
74 BOOL WINAPI ImageGetDigestStream(
75 HANDLE FileHandle, DWORD DigestLevel,
76 DIGEST_FUNCTION DigestFunction, DIGEST_HANDLE DigestHandle)
78 FIXME("(0x%08x, %ld, %p, %p): stub\n",
79 FileHandle, DigestLevel, DigestFunction, DigestHandle
81 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
82 return FALSE;
85 /***********************************************************************
86 * ImageRemoveCertificate (IMAGEHLP.@)
88 BOOL WINAPI ImageRemoveCertificate(HANDLE FileHandle, DWORD Index)
90 FIXME("(0x%08x, %ld): stub\n", FileHandle, Index);
91 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
92 return FALSE;