diff options
author | Kurt Zenker <kz@openoffice.org> | 2007-05-09 12:30:26 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2007-05-09 12:30:26 +0000 |
commit | 7038aaec3b7218c72aea948a49b350b97fc7a103 (patch) | |
tree | 2f87cbdc87cd50a881e4f592c2967fed5907a9e3 /cli_ure | |
parent | 888c472b2273d5b5a57af5d52ed83387fa72bae6 (diff) |
INTEGRATION: CWS bunoexttm (1.1.2); FILE ADDED
2006/12/19 12:05:21 kr 1.1.2.1: added: moved cli_uno bridge from bridges to here
Diffstat (limited to 'cli_ure')
-rw-r--r-- | cli_ure/source/uno_bridge/README.txt | 20 | ||||
-rw-r--r-- | cli_ure/source/uno_bridge/bridge_exports.map | 8 |
2 files changed, 28 insertions, 0 deletions
diff --git a/cli_ure/source/uno_bridge/README.txt b/cli_ure/source/uno_bridge/README.txt new file mode 100644 index 000000000000..39b3ce3648fe --- /dev/null +++ b/cli_ure/source/uno_bridge/README.txt @@ -0,0 +1,20 @@ +Because of the LoaderLock bug in .NET Framework 1.0 and 1.1 the cli_uno.dll is linked +with the /NOENTRY switch, which prevent that the C-runtime is initialized when loading +the dll. + +Also I removed all static c++ objects which need construction by the CRT, +exception handling seems to need an initialised CRT. Therefore +I added CRT initialization code in uno_initEnvironment (cli_bridge.cxx) +However there is no deinitialization done because bridge libraries remain +in memory until the process dies. There is actually no good place where +this had to be called. If we would do that we would have to implement that +the bridge can be disposed. + + +Sell also: + +http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vstechart/html/vcconmixeddllloadingproblem.asp +http://support.microsoft.com/?id=814472 +http://www.ddj.com/dept/windows/184416689 +http://blogs.msdn.com/cbrumme/archive/2003/08/20/51504.aspx +http://msdn2.microsoft.com/en-US/library/ms172219.aspx
\ No newline at end of file diff --git a/cli_ure/source/uno_bridge/bridge_exports.map b/cli_ure/source/uno_bridge/bridge_exports.map new file mode 100644 index 000000000000..df39965a2b51 --- /dev/null +++ b/cli_ure/source/uno_bridge/bridge_exports.map @@ -0,0 +1,8 @@ +UDK_3_0_0 { + global: + component_canUnload; + uno_initEnvironment; + uno_ext_getMapping; + local: + *; +}; |