4 * Copyright 1998 Patrik Stridvall
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include "wine/debug.h"
29 WINE_DEFAULT_DEBUG_CHANNEL(imagehlp);
31 /***********************************************************************
32 * ImageAddCertificate (IMAGEHLP.@)
35 BOOL WINAPI ImageAddCertificate(
36 HANDLE FileHandle, PWIN_CERTIFICATE Certificate, PDWORD Index)
38 FIXME("(%p, %p, %p): stub\n",
39 FileHandle, Certificate, Index
41 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
45 /***********************************************************************
46 * ImageEnumerateCertificates (IMAGEHLP.@)
48 BOOL WINAPI ImageEnumerateCertificates(
49 HANDLE FileHandle, WORD TypeFilter, PDWORD CertificateCount,
50 PDWORD Indices, DWORD IndexCount)
52 FIXME("(%p, %hd, %p, %p, %ld): stub\n",
53 FileHandle, TypeFilter, CertificateCount, Indices, IndexCount
55 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
59 /***********************************************************************
60 * ImageGetCertificateData (IMAGEHLP.@)
62 BOOL WINAPI ImageGetCertificateData(
63 HANDLE FileHandle, DWORD CertificateIndex,
64 PWIN_CERTIFICATE Certificate, PDWORD RequiredLength)
66 FIXME("(%p, %ld, %p, %p): stub\n",
67 FileHandle, CertificateIndex, Certificate, RequiredLength
69 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
73 /***********************************************************************
74 * ImageGetCertificateHeader (IMAGEHLP.@)
76 BOOL WINAPI ImageGetCertificateHeader(
77 HANDLE FileHandle, DWORD CertificateIndex,
78 PWIN_CERTIFICATE Certificateheader)
80 FIXME("(%p, %ld, %p): stub\n",
81 FileHandle, CertificateIndex, Certificateheader
83 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
87 /***********************************************************************
88 * ImageGetDigestStream (IMAGEHLP.@)
90 BOOL WINAPI ImageGetDigestStream(
91 HANDLE FileHandle, DWORD DigestLevel,
92 DIGEST_FUNCTION DigestFunction, DIGEST_HANDLE DigestHandle)
94 FIXME("(%p, %ld, %p, %p): stub\n",
95 FileHandle, DigestLevel, DigestFunction, DigestHandle
97 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
101 /***********************************************************************
102 * ImageRemoveCertificate (IMAGEHLP.@)
104 BOOL WINAPI ImageRemoveCertificate(HANDLE FileHandle, DWORD Index)
106 FIXME("(%p, %ld): stub\n", FileHandle, Index);
107 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);