diff options
author | Michael Mann <mmann78@netscape.net> | 2016-07-16 12:09:27 -0400 |
---|---|---|
committer | Michael Mann <mmann78@netscape.net> | 2016-07-16 19:52:00 +0000 |
commit | 9a9c72cceab5d6cdd9bdd7650e038aac4f697013 (patch) | |
tree | 9a477bff1ad129b0dc05f04db88687326620ed24 /extcap | |
parent | 6d8ea38773a127fe68d967a3b724738e6c725dea (diff) | |
download | wireshark-9a9c72cceab5d6cdd9bdd7650e038aac4f697013.tar.gz wireshark-9a9c72cceab5d6cdd9bdd7650e038aac4f697013.tar.bz2 wireshark-9a9c72cceab5d6cdd9bdd7650e038aac4f697013.zip |
Have extcap executables mirror the GTK's WinMain signature.
This is for appeasing VS Code Analysis.
Change-Id: Ib7b3d8a3025dd764da283335051d0f77b45f6dee
Reviewed-on: https://code.wireshark.org/review/16499
Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'extcap')
-rw-r--r-- | extcap/androiddump.c | 8 | ||||
-rw-r--r-- | extcap/ciscodump.c | 8 | ||||
-rw-r--r-- | extcap/randpktdump.c | 8 | ||||
-rw-r--r-- | extcap/sshdump.c | 8 |
4 files changed, 24 insertions, 8 deletions
diff --git a/extcap/androiddump.c b/extcap/androiddump.c index 07a2f77ad8..442f15deac 100644 --- a/extcap/androiddump.c +++ b/extcap/androiddump.c @@ -2699,8 +2699,12 @@ int main(int argc, char **argv) { } #ifdef _WIN32 -int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, - LPSTR lpCmdLine, int nCmdShow) { +int _stdcall +WinMain (struct HINSTANCE__ *hInstance, + struct HINSTANCE__ *hPrevInstance, + char *lpszCmdLine, + int nCmdShow) +{ return main(__argc, __argv); } #endif diff --git a/extcap/ciscodump.c b/extcap/ciscodump.c index 5ca4581910..a519e0912b 100644 --- a/extcap/ciscodump.c +++ b/extcap/ciscodump.c @@ -729,8 +729,12 @@ end: } #ifdef _WIN32 -int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, - LPSTR lpCmdLine, int nCmdShow) { +int _stdcall +WinMain (struct HINSTANCE__ *hInstance, + struct HINSTANCE__ *hPrevInstance, + char *lpszCmdLine, + int nCmdShow) +{ return main(__argc, __argv); } #endif diff --git a/extcap/randpktdump.c b/extcap/randpktdump.c index d0cb4cf9d6..0235470883 100644 --- a/extcap/randpktdump.c +++ b/extcap/randpktdump.c @@ -335,8 +335,12 @@ end: } #ifdef _WIN32 -int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, - LPSTR lpCmdLine, int nCmdShow) { +int _stdcall +WinMain (struct HINSTANCE__ *hInstance, + struct HINSTANCE__ *hPrevInstance, + char *lpszCmdLine, + int nCmdShow) +{ return main(__argc, __argv); } #endif diff --git a/extcap/sshdump.c b/extcap/sshdump.c index 94cf27de19..ab6988450f 100644 --- a/extcap/sshdump.c +++ b/extcap/sshdump.c @@ -528,8 +528,12 @@ end: } #ifdef _WIN32 -int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, - LPSTR lpCmdLine, int nCmdShow) { +int _stdcall +WinMain (struct HINSTANCE__ *hInstance, + struct HINSTANCE__ *hPrevInstance, + char *lpszCmdLine, + int nCmdShow) +{ return main(__argc, __argv); } #endif |