1
|
1 |
# Copyright (C) 2005, Giovanni Bajo
|
|
2 |
# Based on previous work under copyright (c) 2001, 2002 McMillan Enterprises, Inc.
|
|
3 |
#
|
|
4 |
# This program is free software; you can redistribute it and/or
|
|
5 |
# modify it under the terms of the GNU General Public License
|
|
6 |
# as published by the Free Software Foundation; either version 2
|
|
7 |
# of the License, or (at your option) any later version.
|
|
8 |
#
|
|
9 |
# This program is distributed in the hope that it will be useful,
|
|
10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12 |
# GNU General Public License for more details.
|
|
13 |
#
|
|
14 |
# You should have received a copy of the GNU General Public License
|
|
15 |
# along with this program; if not, write to the Free Software
|
|
16 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
17 |
|
|
18 |
hiddenimports = ['win32com.server.policy']
|
|
19 |
|
|
20 |
def hook(mod):
|
|
21 |
import sys
|
|
22 |
if hasattr(sys, 'version_info'):
|
|
23 |
vers = '%d%d' % (sys.version_info[0], sys.version_info[1])
|
|
24 |
else:
|
|
25 |
import string
|
|
26 |
toks = string.split(sys.version[:3], '.')
|
|
27 |
vers = '%s%s' % (toks[0], toks[1])
|
|
28 |
newname = 'pythoncom%s' % vers
|
|
29 |
if mod.typ == 'EXTENSION':
|
|
30 |
mod.__name__ = newname
|
|
31 |
else:
|
|
32 |
import win32api
|
|
33 |
h = win32api.LoadLibrary(newname+'.dll')
|
|
34 |
pth = win32api.GetModuleFileName(h)
|
|
35 |
#win32api.FreeLibrary(h)
|
|
36 |
import mf
|
|
37 |
mod = mf.ExtensionModule(newname, pth)
|
|
38 |
return mod
|
|
39 |
|