2010-11-23 Marcus Brinkmann <mb@g10code.com>
[gpgme.git] / complus / regtlb.c
1 /* regtlb.c - Register a type library
2  *      Copyright (C) 2001 g10 Code GmbH
3  *
4  * This file is part of GPGME.
5  *
6  * GPGME is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * GPGME is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
19  */
20
21
22 #include <config.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <errno.h>
27 #include <assert.h>
28 #include <time.h>
29 #include <windows.h>
30
31 #include "xmalloc.h"
32 #include "oleauto.h"
33
34 int 
35 main (int argc, char **argv)
36 {
37     ITypeLib  *pTypeLib;
38     wchar_t *fname;
39     HRESULT hr;
40     size_t n;
41
42     if ( argc != 2 ) {
43         fprintf (stderr,"usage: regtlb foo.tlb\n");
44         return 1;
45     }
46     
47     n = mbstowcs (NULL, argv[1], strlen(argv[1])+1);
48     fprintf (stderr, "need %d bytes\n", (int)n);
49     fname = xmalloc ((n+1)*sizeof *fname);
50     mbstowcs (fname, argv[1], strlen (argv[1])+1);
51
52     hr = CoInitializeEx (NULL, COINIT_MULTITHREADED); 
53     if (hr)
54         fprintf (stderr, "CoInitializeEx() failed: hr=%lu\n", hr);
55
56     hr = LoadTypeLibEx (fname, REGKIND_REGISTER, &pTypeLib);
57     if (hr)
58         fprintf (stderr, "LoadTypeLibEx() failed: hr=%lx\n", hr);
59
60     ITypeLib_Release (pTypeLib);
61
62     CoUninitialize ();
63     return 0;
64 }
65     
66
67
68
69
70