aboutsummaryrefslogtreecommitdiff
path: root/src/wix/wixnative/extractcab.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wix/wixnative/extractcab.cpp')
-rw-r--r--src/wix/wixnative/extractcab.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wix/wixnative/extractcab.cpp b/src/wix/wixnative/extractcab.cpp
index 53f53266..2de37992 100644
--- a/src/wix/wixnative/extractcab.cpp
+++ b/src/wix/wixnative/extractcab.cpp
@@ -2,12 +2,12 @@
2 2
3#include "precomp.h" 3#include "precomp.h"
4 4
5static HRESULT ProgressCallback(BOOL fBeginFile, LPCWSTR wzFileId, LPVOID pvContext); 5static HRESULT ProgressCallback(__in BOOL fBeginFile, __in_z LPCWSTR wzFileId, __in_opt LPVOID pvContext);
6 6
7 7
8HRESULT ExtractCabCommand( 8HRESULT ExtractCabCommand(
9 __in int argc, 9 __in int argc,
10 __in LPWSTR argv[] 10 __in_ecount(argc) LPWSTR argv[]
11) 11)
12{ 12{
13 HRESULT hr = E_INVALIDARG; 13 HRESULT hr = E_INVALIDARG;
@@ -37,8 +37,8 @@ LExit:
37 37
38static HRESULT ProgressCallback( 38static HRESULT ProgressCallback(
39 __in BOOL fBeginFile, 39 __in BOOL fBeginFile,
40 __in LPCWSTR wzFileId, 40 __in_z LPCWSTR wzFileId,
41 __in LPVOID /*pvContext*/ 41 __in_opt LPVOID /*pvContext*/
42) 42)
43{ 43{
44 if (fBeginFile) 44 if (fBeginFile)