Changeset 385
- Timestamp:
- Jul 2, 2012, 10:10:25 AM (13 years ago)
- Location:
- trunk/icedtea-web/plugin/icedteanp
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/icedtea-web/plugin/icedteanp/IcedTeaNPPlugin.cc
r384 r385 2587 2587 pthread_mutex_destroy(&pluginAsyncCallMutex); 2588 2588 2589 #ifdef __OS2__ 2590 // perform OS-specific uninitialization 2591 done_os(); 2592 #endif 2593 2589 2594 initialized = false; 2590 2595 -
trunk/icedtea-web/plugin/icedteanp/os2/OS_OS2.cc
r377 r385 66 66 return init_os_winos2(); 67 67 } 68 69 void done_os() 70 { 71 done_os_winos2(); 72 } -
trunk/icedtea-web/plugin/icedteanp/os2/OS_OS2.h
r377 r385 44 44 45 45 bool init_os(); 46 void done_os(); 46 47 47 48 void *wrap_window_handle (void *handle); -
trunk/icedtea-web/plugin/icedteanp/os2/OS_OS2_WinOS2.cc
r377 r385 60 60 if (!WrapperClass) 61 61 { 62 PLUGIN_DEBUG ("RegisterClass failed. ");62 PLUGIN_DEBUG ("RegisterClass failed.\n"); 63 63 return FALSE; 64 64 } 65 65 66 66 return TRUE; 67 } 68 69 void done_os_winos2() 70 { 71 if (!UnregisterClass ("WC_ICEDTEANP_WRAPPER", 0)); 72 PLUGIN_DEBUG ("UnregisterClass failed.\n"); 67 73 } 68 74 -
trunk/icedtea-web/plugin/icedteanp/os2/OS_OS2_WinOS2.h
r377 r385 41 41 42 42 bool init_os_winos2(); 43 void done_os_winos2(); 43 44 44 45 #endif // __OS_OS2_WINOS2_H__
Note:
See TracChangeset
for help on using the changeset viewer.