Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Implementation of the Microsoft Installer (msi.dll) |
| 3 | * |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 4 | * Copyright 2002-2004 Mike McCormack for CodeWeavers |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 5 | * |
| 6 | * This library is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU Lesser General Public |
| 8 | * License as published by the Free Software Foundation; either |
| 9 | * version 2.1 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This library 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 GNU |
| 14 | * Lesser General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU Lesser General Public |
| 17 | * License along with this library; if not, write to the Free Software |
Jonathan Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame] | 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 21 | #define COBJMACROS |
| 22 | |
Alexandre Julliard | e37c6e1 | 2003-09-05 23:08:26 +0000 | [diff] [blame] | 23 | #include <stdarg.h> |
| 24 | |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 25 | #include "windef.h" |
| 26 | #include "winbase.h" |
| 27 | #include "winreg.h" |
| 28 | #include "shlwapi.h" |
| 29 | #include "wine/debug.h" |
| 30 | #include "msi.h" |
| 31 | #include "msiquery.h" |
| 32 | #include "msipriv.h" |
| 33 | |
| 34 | WINE_DEFAULT_DEBUG_CHANNEL(msi); |
| 35 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 36 | static CRITICAL_SECTION MSI_handle_cs; |
| 37 | static CRITICAL_SECTION_DEBUG MSI_handle_cs_debug = |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 38 | { |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 39 | 0, 0, &MSI_handle_cs, |
| 40 | { &MSI_handle_cs_debug.ProcessLocksList, |
| 41 | &MSI_handle_cs_debug.ProcessLocksList }, |
Alexandre Julliard | 20a1a20 | 2005-09-09 10:19:44 +0000 | [diff] [blame] | 42 | 0, 0, { (DWORD_PTR)(__FILE__ ": MSI_handle_cs") } |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 43 | }; |
| 44 | static CRITICAL_SECTION MSI_handle_cs = { &MSI_handle_cs_debug, -1, 0, 0, 0, 0 }; |
| 45 | |
Mike McCormack | 0f0b6c8 | 2004-12-27 19:29:33 +0000 | [diff] [blame] | 46 | static CRITICAL_SECTION MSI_object_cs; |
| 47 | static CRITICAL_SECTION_DEBUG MSI_object_cs_debug = |
| 48 | { |
| 49 | 0, 0, &MSI_object_cs, |
| 50 | { &MSI_object_cs_debug.ProcessLocksList, |
| 51 | &MSI_object_cs_debug.ProcessLocksList }, |
Alexandre Julliard | 20a1a20 | 2005-09-09 10:19:44 +0000 | [diff] [blame] | 52 | 0, 0, { (DWORD_PTR)(__FILE__ ": MSI_object_cs") } |
Mike McCormack | 0f0b6c8 | 2004-12-27 19:29:33 +0000 | [diff] [blame] | 53 | }; |
| 54 | static CRITICAL_SECTION MSI_object_cs = { &MSI_object_cs_debug, -1, 0, 0, 0, 0 }; |
| 55 | |
Mike McCormack | 8964082 | 2005-01-06 20:43:04 +0000 | [diff] [blame] | 56 | typedef struct msi_handle_info_t |
| 57 | { |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 58 | BOOL remote; |
| 59 | union { |
| 60 | MSIOBJECTHDR *obj; |
| 61 | IUnknown *unk; |
| 62 | } u; |
Mike McCormack | 8964082 | 2005-01-06 20:43:04 +0000 | [diff] [blame] | 63 | DWORD dwThreadId; |
| 64 | } msi_handle_info; |
| 65 | |
Dan Kegel | 29f0803 | 2006-08-28 07:51:30 -0700 | [diff] [blame] | 66 | static msi_handle_info *msihandletable = NULL; |
Alexandre Julliard | bb8ba38 | 2007-06-27 14:14:49 +0200 | [diff] [blame] | 67 | static unsigned int msihandletable_size = 0; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 68 | |
Mike McCormack | 155a325 | 2006-08-29 17:08:01 +0900 | [diff] [blame] | 69 | void msi_free_handle_table(void) |
| 70 | { |
| 71 | msi_free( msihandletable ); |
| 72 | msihandletable = NULL; |
| 73 | msihandletable_size = 0; |
| 74 | } |
| 75 | |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 76 | static MSIHANDLE alloc_handle_table_entry(void) |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 77 | { |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 78 | UINT i; |
| 79 | |
| 80 | /* find a slot */ |
Dan Kegel | 29f0803 | 2006-08-28 07:51:30 -0700 | [diff] [blame] | 81 | for(i=0; i<msihandletable_size; i++) |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 82 | if( !msihandletable[i].u.obj && !msihandletable[i].u.unk ) |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 83 | break; |
Dan Kegel | 29f0803 | 2006-08-28 07:51:30 -0700 | [diff] [blame] | 84 | if( i==msihandletable_size ) |
| 85 | { |
| 86 | msi_handle_info *p; |
| 87 | int newsize; |
| 88 | if (msihandletable_size == 0) |
| 89 | { |
| 90 | newsize = 256; |
| 91 | p = msi_alloc_zero(newsize*sizeof(msi_handle_info)); |
| 92 | } |
Mike McCormack | 155a325 | 2006-08-29 17:08:01 +0900 | [diff] [blame] | 93 | else |
| 94 | { |
Dan Kegel | 29f0803 | 2006-08-28 07:51:30 -0700 | [diff] [blame] | 95 | newsize = msihandletable_size * 2; |
| 96 | p = msi_realloc_zero(msihandletable, |
| 97 | newsize*sizeof(msi_handle_info)); |
Mike McCormack | 155a325 | 2006-08-29 17:08:01 +0900 | [diff] [blame] | 98 | } |
Dan Kegel | 29f0803 | 2006-08-28 07:51:30 -0700 | [diff] [blame] | 99 | if (!p) |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 100 | return 0; |
Dan Kegel | 29f0803 | 2006-08-28 07:51:30 -0700 | [diff] [blame] | 101 | msihandletable = p; |
| 102 | msihandletable_size = newsize; |
| 103 | } |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 104 | return i + 1; |
| 105 | } |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 106 | |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 107 | MSIHANDLE alloc_msihandle( MSIOBJECTHDR *obj ) |
| 108 | { |
| 109 | msi_handle_info *entry; |
| 110 | MSIHANDLE ret; |
| 111 | |
| 112 | EnterCriticalSection( &MSI_handle_cs ); |
| 113 | |
| 114 | ret = alloc_handle_table_entry(); |
| 115 | if (ret) |
| 116 | { |
| 117 | entry = &msihandletable[ ret - 1 ]; |
| 118 | msiobj_addref( obj ); |
| 119 | entry->u.obj = obj; |
| 120 | entry->dwThreadId = GetCurrentThreadId(); |
| 121 | entry->remote = FALSE; |
| 122 | } |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 123 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 124 | LeaveCriticalSection( &MSI_handle_cs ); |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 125 | |
Michael Stefaniuc | 6bd893a | 2009-01-04 14:14:15 +0100 | [diff] [blame] | 126 | TRACE("%p -> %d\n", obj, ret ); |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 127 | |
| 128 | return ret; |
| 129 | } |
| 130 | |
| 131 | MSIHANDLE alloc_msi_remote_handle( IUnknown *unk ) |
| 132 | { |
| 133 | msi_handle_info *entry; |
| 134 | MSIHANDLE ret; |
| 135 | |
| 136 | EnterCriticalSection( &MSI_handle_cs ); |
| 137 | |
| 138 | ret = alloc_handle_table_entry(); |
| 139 | if (ret) |
| 140 | { |
| 141 | entry = &msihandletable[ ret - 1 ]; |
| 142 | IUnknown_AddRef( unk ); |
| 143 | entry->u.unk = unk; |
| 144 | entry->dwThreadId = GetCurrentThreadId(); |
| 145 | entry->remote = TRUE; |
| 146 | } |
| 147 | |
| 148 | LeaveCriticalSection( &MSI_handle_cs ); |
| 149 | |
Michael Stefaniuc | 6bd893a | 2009-01-04 14:14:15 +0100 | [diff] [blame] | 150 | TRACE("%p -> %d\n", unk, ret); |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 151 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 152 | return ret; |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | void *msihandle2msiinfo(MSIHANDLE handle, UINT type) |
| 156 | { |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 157 | MSIOBJECTHDR *ret = NULL; |
| 158 | |
| 159 | EnterCriticalSection( &MSI_handle_cs ); |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 160 | handle--; |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 161 | if( handle >= msihandletable_size ) |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 162 | goto out; |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 163 | if( msihandletable[handle].remote) |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 164 | goto out; |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 165 | if( !msihandletable[handle].u.obj ) |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 166 | goto out; |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 167 | if( msihandletable[handle].u.obj->magic != MSIHANDLE_MAGIC ) |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 168 | goto out; |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 169 | if( type && (msihandletable[handle].u.obj->type != type) ) |
| 170 | goto out; |
| 171 | ret = msihandletable[handle].u.obj; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 172 | msiobj_addref( ret ); |
Mike McCormack | 3f2cedd | 2006-11-01 15:09:02 +0900 | [diff] [blame] | 173 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 174 | out: |
| 175 | LeaveCriticalSection( &MSI_handle_cs ); |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 176 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 177 | return (void*) ret; |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 178 | } |
| 179 | |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 180 | IUnknown *msi_get_remote( MSIHANDLE handle ) |
| 181 | { |
| 182 | IUnknown *unk = NULL; |
| 183 | |
| 184 | EnterCriticalSection( &MSI_handle_cs ); |
| 185 | handle--; |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 186 | if( handle>=msihandletable_size ) |
| 187 | goto out; |
| 188 | if( !msihandletable[handle].remote) |
| 189 | goto out; |
| 190 | unk = msihandletable[handle].u.unk; |
| 191 | if( unk ) |
| 192 | IUnknown_AddRef( unk ); |
| 193 | |
| 194 | out: |
| 195 | LeaveCriticalSection( &MSI_handle_cs ); |
| 196 | |
| 197 | return unk; |
| 198 | } |
| 199 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 200 | void *alloc_msiobject(UINT type, UINT size, msihandledestructor destroy ) |
| 201 | { |
| 202 | MSIOBJECTHDR *info; |
| 203 | |
Mike McCormack | 8dc28d5 | 2005-09-20 11:57:19 +0000 | [diff] [blame] | 204 | info = msi_alloc_zero( size ); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 205 | if( info ) |
| 206 | { |
| 207 | info->magic = MSIHANDLE_MAGIC; |
| 208 | info->type = type; |
| 209 | info->refcount = 1; |
| 210 | info->destructor = destroy; |
| 211 | } |
| 212 | |
| 213 | return info; |
| 214 | } |
| 215 | |
| 216 | void msiobj_addref( MSIOBJECTHDR *info ) |
| 217 | { |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 218 | if( !info ) |
| 219 | return; |
| 220 | |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 221 | if( info->magic != MSIHANDLE_MAGIC ) |
| 222 | { |
| 223 | ERR("Invalid handle!\n"); |
| 224 | return; |
| 225 | } |
| 226 | |
Mike McCormack | b3a7f37 | 2005-01-20 20:34:29 +0000 | [diff] [blame] | 227 | InterlockedIncrement(&info->refcount); |
Aric Stewart | 401bd3f | 2004-06-28 20:34:35 +0000 | [diff] [blame] | 228 | } |
| 229 | |
Mike McCormack | 0f0b6c8 | 2004-12-27 19:29:33 +0000 | [diff] [blame] | 230 | void msiobj_lock( MSIOBJECTHDR *info ) |
| 231 | { |
| 232 | EnterCriticalSection( &MSI_object_cs ); |
| 233 | } |
| 234 | |
| 235 | void msiobj_unlock( MSIOBJECTHDR *info ) |
| 236 | { |
| 237 | LeaveCriticalSection( &MSI_object_cs ); |
| 238 | } |
| 239 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 240 | int msiobj_release( MSIOBJECTHDR *info ) |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 241 | { |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 242 | int ret; |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 243 | |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 244 | if( !info ) |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 245 | return -1; |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 246 | |
| 247 | if( info->magic != MSIHANDLE_MAGIC ) |
| 248 | { |
| 249 | ERR("Invalid handle!\n"); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 250 | return -1; |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 251 | } |
| 252 | |
Mike McCormack | b3a7f37 | 2005-01-20 20:34:29 +0000 | [diff] [blame] | 253 | ret = InterlockedDecrement( &info->refcount ); |
| 254 | if( ret==0 ) |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 255 | { |
Mike McCormack | b3a7f37 | 2005-01-20 20:34:29 +0000 | [diff] [blame] | 256 | if( info->destructor ) |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 257 | info->destructor( info ); |
Mike McCormack | 8dc28d5 | 2005-09-20 11:57:19 +0000 | [diff] [blame] | 258 | msi_free( info ); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 259 | TRACE("object %p destroyed\n", info); |
| 260 | } |
| 261 | |
| 262 | return ret; |
| 263 | } |
| 264 | |
Mike McCormack | 8964082 | 2005-01-06 20:43:04 +0000 | [diff] [blame] | 265 | /*********************************************************** |
| 266 | * MsiCloseHandle [MSI.@] |
| 267 | */ |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 268 | UINT WINAPI MsiCloseHandle(MSIHANDLE handle) |
| 269 | { |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 270 | MSIOBJECTHDR *info = NULL; |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 271 | UINT ret = ERROR_INVALID_HANDLE; |
| 272 | |
Michael Stefaniuc | 6bd893a | 2009-01-04 14:14:15 +0100 | [diff] [blame] | 273 | TRACE("%x\n",handle); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 274 | |
Mike McCormack | a21f9e5 | 2006-06-11 09:51:42 +0900 | [diff] [blame] | 275 | if (!handle) |
| 276 | return ERROR_SUCCESS; |
| 277 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 278 | EnterCriticalSection( &MSI_handle_cs ); |
| 279 | |
Alexandre Julliard | bb8ba38 | 2007-06-27 14:14:49 +0200 | [diff] [blame] | 280 | handle--; |
| 281 | if (handle >= msihandletable_size) |
| 282 | goto out; |
| 283 | |
| 284 | if (msihandletable[handle].remote) |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 285 | { |
Alexandre Julliard | bb8ba38 | 2007-06-27 14:14:49 +0200 | [diff] [blame] | 286 | IUnknown_Release( msihandletable[handle].u.unk ); |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 287 | } |
| 288 | else |
| 289 | { |
Alexandre Julliard | bb8ba38 | 2007-06-27 14:14:49 +0200 | [diff] [blame] | 290 | info = msihandletable[handle].u.obj; |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 291 | if( !info ) |
| 292 | goto out; |
| 293 | |
| 294 | if( info->magic != MSIHANDLE_MAGIC ) |
| 295 | { |
| 296 | ERR("Invalid handle!\n"); |
| 297 | goto out; |
| 298 | } |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 299 | } |
| 300 | |
Alexandre Julliard | bb8ba38 | 2007-06-27 14:14:49 +0200 | [diff] [blame] | 301 | msihandletable[handle].u.obj = NULL; |
| 302 | msihandletable[handle].remote = 0; |
| 303 | msihandletable[handle].dwThreadId = 0; |
James Hawkins | 46158e0 | 2007-06-26 17:02:06 -0700 | [diff] [blame] | 304 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 305 | ret = ERROR_SUCCESS; |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 306 | |
Michael Stefaniuc | 6bd893a | 2009-01-04 14:14:15 +0100 | [diff] [blame] | 307 | TRACE("handle %x destroyed\n", handle+1); |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 308 | out: |
| 309 | LeaveCriticalSection( &MSI_handle_cs ); |
| 310 | if( info ) |
| 311 | msiobj_release( info ); |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 312 | |
Alexandre Julliard | a7a6f5f | 2004-07-09 22:25:34 +0000 | [diff] [blame] | 313 | return ret; |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 314 | } |
| 315 | |
Mike McCormack | 8964082 | 2005-01-06 20:43:04 +0000 | [diff] [blame] | 316 | /*********************************************************** |
| 317 | * MsiCloseAllHandles [MSI.@] |
| 318 | * |
| 319 | * Closes all handles owned by the current thread |
| 320 | * |
| 321 | * RETURNS: |
| 322 | * The number of handles closed |
| 323 | */ |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 324 | UINT WINAPI MsiCloseAllHandles(void) |
| 325 | { |
Mike McCormack | 8964082 | 2005-01-06 20:43:04 +0000 | [diff] [blame] | 326 | UINT i, n=0; |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 327 | |
| 328 | TRACE("\n"); |
| 329 | |
Dan Kegel | 29f0803 | 2006-08-28 07:51:30 -0700 | [diff] [blame] | 330 | EnterCriticalSection( &MSI_handle_cs ); |
| 331 | for(i=0; i<msihandletable_size; i++) |
Mike McCormack | 8964082 | 2005-01-06 20:43:04 +0000 | [diff] [blame] | 332 | { |
| 333 | if(msihandletable[i].dwThreadId == GetCurrentThreadId()) |
| 334 | { |
Dan Kegel | 29f0803 | 2006-08-28 07:51:30 -0700 | [diff] [blame] | 335 | LeaveCriticalSection( &MSI_handle_cs ); |
Mike McCormack | 8964082 | 2005-01-06 20:43:04 +0000 | [diff] [blame] | 336 | MsiCloseHandle( i+1 ); |
Dan Kegel | 29f0803 | 2006-08-28 07:51:30 -0700 | [diff] [blame] | 337 | EnterCriticalSection( &MSI_handle_cs ); |
Mike McCormack | 8964082 | 2005-01-06 20:43:04 +0000 | [diff] [blame] | 338 | n++; |
| 339 | } |
| 340 | } |
Dan Kegel | 29f0803 | 2006-08-28 07:51:30 -0700 | [diff] [blame] | 341 | LeaveCriticalSection( &MSI_handle_cs ); |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 342 | |
Mike McCormack | 8964082 | 2005-01-06 20:43:04 +0000 | [diff] [blame] | 343 | return n; |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 344 | } |