Skip to content

Commit

Permalink
Merge pull request SoftEtherVPN#1905 from chipitsine/master
Browse files Browse the repository at this point in the history
fix windows build
  • Loading branch information
chipitsine authored Sep 17, 2023
2 parents d8dec75 + f736d18 commit 18dc262
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Cedar/SW.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,12 @@ bool SwCompileSfx(LIST *o, wchar_t *dst_filename)
}

// Get the API related to the resource editing
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wincompatible-function-pointer-types"
_BeginUpdateResourceW = (HANDLE (__stdcall *)(LPCWSTR,UINT))GetProcAddress(hKernel32, "BeginUpdateResourceW");
_UpdateResourceA = (UINT (__stdcall *)(HANDLE,LPCSTR,LPCSTR,WORD,LPVOID,DWORD))GetProcAddress(hKernel32, "UpdateResourceA");
_EndUpdateResourceW = (UINT (__stdcall *)(HANDLE,UINT))GetProcAddress(hKernel32, "EndUpdateResourceW");
#pragma clang diagnostic pop

if (_BeginUpdateResourceW != NULL && _UpdateResourceA != NULL && _EndUpdateResourceW != NULL)
{
Expand Down Expand Up @@ -647,7 +650,10 @@ UINT SWExec()
bool is_datafile_exists = false;

// Examine whether DATAFILE resources are stored in setup.exe that is currently running
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wincompatible-function-pointer-types"
EnumResourceNamesA(NULL, SW_SFX_RESOURCE_TYPE, SwEnumResourceNamesProc, (LONG_PTR)(&is_datafile_exists));
#pragma clang diagnostic pop

if (is_datafile_exists)
{
Expand Down
3 changes: 3 additions & 0 deletions src/Cedar/SeLowUser.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,12 @@ void SuDeleteGarbageInfsInner()
return;
}

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wincompatible-function-pointer-types"
_SetupUninstallOEMInfA =
(UINT (__stdcall *)(PCSTR,DWORD,PVOID))
GetProcAddress(hSetupApiDll, "SetupUninstallOEMInfA");
#pragma clang diagnostic pop

if (_SetupUninstallOEMInfA != NULL)
{
Expand Down
6 changes: 6 additions & 0 deletions src/Cedar/WinUi.c
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,10 @@ void ShowWizard(HWND hWndParent, WIZARD *w, UINT start_id)
h.phpage = (HPROPSHEETPAGE *)pages_array;
h.pszbmHeader = MAKEINTRESOURCEW(w->Bitmap);
h.pszCaption = w->Caption;
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wincompatible-function-pointer-types"
h.pfnCallback = WizardDlgProc;
#pragma clang diagnostic pop

start_page = GetWizardPage(w, start_id);
if (start_page != NULL)
Expand Down Expand Up @@ -3487,7 +3490,10 @@ HWND SearchWindow(wchar_t *caption)
p.caption = caption;
p.hWndFound = NULL;

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wincompatible-function-pointer-types"
EnumWindows(SearchWindowEnumProc, (LPARAM)&p);
#pragma clang diagnostic pop

return p.hWndFound;
}
Expand Down
3 changes: 3 additions & 0 deletions src/Mayaqua/Win32.c
Original file line number Diff line number Diff line change
Expand Up @@ -2846,7 +2846,10 @@ bool Win32InitThread(THREAD *t)

// Thread creation
t->pData = w;
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wincompatible-function-pointer-types"
hThread = (HANDLE)_beginthreadex(NULL, 0, Win32DefaultThreadProc, info, 0, &thread_id);
#pragma clang diagnostic pop
if (hThread == NULL)
{
// Thread creation failure
Expand Down
1 change: 1 addition & 0 deletions src/vpndrvinst/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include "Dialog.h"

#include <stdio.h>
#include <string.h>

void ShowUsage()
{
Expand Down

0 comments on commit 18dc262

Please sign in to comment.