NSIS/Contrib/Dialer/dialer.c
wizou 752d7d239a Jim Park's Unicode NSIS merging - Step 1 : switch to TCHARs where relevant.
Compiler output is identical before & after this step

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/branches/wizou@6036 212acab6-be3b-0410-9dea-997c60f758d6
2010-03-24 17:22:56 +00:00

129 lines
2.9 KiB
C

// Unicode support by Jim Park -- 08/22/2007
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <wininet.h>
#include <nsis/pluginapi.h> // nsis plugin
#define NSISFunction(funcname) void __declspec(dllexport) funcname(HWND hwndParent, int string_size, TCHAR *variables, stack_t **stacktop, extra_parameters *extra)
BOOL WINAPI DllMain(HANDLE hInst, ULONG ul_reason_for_call, LPVOID lpReserved) {
return TRUE;
}
/*************\
* LOADER *
\*************/
HMODULE hWinInet = NULL;
// GetProcAddress only takes ANSI.
FARPROC GetWinInetFunc(char *func) {
hWinInet = LoadLibrary(_T("wininet.dll"));
if (hWinInet)
return GetProcAddress(hWinInet, func);
return NULL;
}
void FreeWinInet() {
if (hWinInet)
FreeLibrary(hWinInet);
hWinInet = NULL;
}
/*************\
* FUNCTIONS *
\*************/
NSISFunction(AutodialOnline) {
typedef BOOL (WINAPI *fInternetAutodial)(DWORD, HWND);
fInternetAutodial pInternetAutodial = (fInternetAutodial) GetWinInetFunc("InternetAutodial");
if (!pInternetAutodial) {
extra->exec_flags->exec_error++;
return;
}
EXDLL_INIT();
if (pInternetAutodial(INTERNET_AUTODIAL_FORCE_ONLINE, 0))
pushstring(_T("online"));
else
pushstring(_T("offline"));
FreeWinInet();
}
NSISFunction(AutodialUnattended) {
typedef BOOL (WINAPI *fInternetAutodial)(DWORD, HWND);
fInternetAutodial pInternetAutodial = (fInternetAutodial) GetWinInetFunc("InternetAutodial");
if (!pInternetAutodial) {
extra->exec_flags->exec_error++;
return;
}
EXDLL_INIT();
if (pInternetAutodial(INTERNET_AUTODIAL_FORCE_UNATTENDED , 0))
pushstring(_T("online"));
else
pushstring(_T("offline"));
FreeWinInet();
}
NSISFunction(AttemptConnect) {
typedef DWORD (WINAPI *fAttemptConn)(DWORD);
fAttemptConn pInternetAttemptConnect = (fAttemptConn) GetWinInetFunc("InternetAttemptConnect");
if (!pInternetAttemptConnect) {
extra->exec_flags->exec_error++;
return;
}
EXDLL_INIT();
if (pInternetAttemptConnect(0) == ERROR_SUCCESS)
pushstring(_T("online"));
else
pushstring(_T("offline"));
FreeWinInet();
}
NSISFunction(GetConnectedState) {
DWORD dwState;
typedef BOOL (WINAPI *fGetConState)(LPDWORD, DWORD);
fGetConState pInternetGetConnectedState = (fGetConState) GetWinInetFunc("InternetGetConnectedState");
if (!pInternetGetConnectedState) {
extra->exec_flags->exec_error++;
return;
}
EXDLL_INIT();
if (pInternetGetConnectedState(&dwState, 0))
pushstring(_T("online"));
else
pushstring(_T("offline"));
FreeWinInet();
}
NSISFunction(AutodialHangup) {
typedef BOOL (WINAPI *fAutodial)(DWORD);
fAutodial pInternetAutodialHangup = (fAutodial) GetWinInetFunc("InternetAutodialHangup");
if (!pInternetAutodialHangup) {
extra->exec_flags->exec_error++;
return;
}
EXDLL_INIT();
if (pInternetAutodialHangup(0))
pushstring(_T("success"));
else
pushstring(_T("failure"));
FreeWinInet();
}