1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* Simple Application which calls the DllRegisterServer or DllUnregisterServer functions
* of the XMerge ActiveSync plugin.
*/
#include <stdio.h>
#include <string.h>
#include <windows.h>
typedef HRESULT (STDAPICALLTYPE *DLLREGISTERSERVER)(void);
typedef HRESULT (STDAPICALLTYPE *DLLUNREGISTERSERVER)(void);
int main(int argc, char* argv[])
{
BOOL bUninstall = FALSE;
int nPathIndex = 1;
if (argc < 2 || argc > 3)
{
printf("\nUsage: regutil [/u] <Full Path of XMergeSync.dll>\n\n");
return -1;
}
if (argc == 3)
{
if (strcmp("/u", argv[1]))
{
printf("\nUnrecognised option: %s\n", argv[1]);
return -1;
}
bUninstall = TRUE;
nPathIndex = 2;
}
// Dynamically load the library
HMODULE hmXMDll = LoadLibrary(argv[nPathIndex]);
if (hmXMDll == NULL)
{
printf("\nUnable to load the library %s\n", argv[nPathIndex]);
return -1;
}
// Get an offset to the either the DllRegisterServer or DllUnregisterServer functions
if (!bUninstall)
{
printf("\nRegistering %s ... ", argv[nPathIndex]);
DLLREGISTERSERVER DllRegisterServer = (DLLREGISTERSERVER)GetProcAddress(hmXMDll, "DllRegisterServer");
if (DllRegisterServer == NULL)
{
printf("failed.\n\nDllRegisterServer is not present in library.\n");
return -1;
}
// Now call the procedure ...
HRESULT regResult = DllRegisterServer() ;
if (regResult != S_OK)
{
printf("failed.\n");
return -1;
}
}
else
{
printf("\nUnregistering %s ... ", argv[nPathIndex]);
DLLUNREGISTERSERVER DllUnregisterServer = (DLLUNREGISTERSERVER)GetProcAddress(hmXMDll, "DllUnregisterServer");
if (DllUnregisterServer == NULL)
{
printf("failed.\n\nDllUnregisterServer is not present in library.\n");
return -1;
}
// Now call the procedure ...
HRESULT regResult = DllUnregisterServer() ;
if (regResult != S_OK)
{
printf("failed.\n");
return -1;
}
}
printf("done.\n");
// Clean up
FreeLibrary(hmXMDll);
return 0;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|