OLD | NEW |
1 /** | 1 /** |
2 * \file handle.h The "install session" is the context for all custom installatio
n behavior. | 2 * \file handle.h The "install session" is the context for all custom installatio
n behavior. |
3 */ | 3 */ |
4 | 4 |
5 #ifndef HANDLE_H | 5 #ifndef HANDLE_H |
6 #define HANDLE_H | 6 #define HANDLE_H |
7 | 7 |
8 #include "windows.h" | 8 #include "windows.h" |
9 #include "msi.h" | 9 #include "msi.h" |
10 | 10 |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 /** | 265 /** |
266 * Expose the underlying handle type. | 266 * Expose the underlying handle type. |
267 */ | 267 */ |
268 typedef T handle_type ; | 268 typedef T handle_type ; |
269 } ; | 269 } ; |
270 | 270 |
271 //------------------------------------------------------- | 271 //------------------------------------------------------- |
272 // Common instantiations of handle | 272 // Common instantiations of handle |
273 //------------------------------------------------------- | 273 //------------------------------------------------------- |
274 typedef handle< HANDLE, Disallow_Null, Windows_Generic_Destruction > Windows_Han
dle ; | 274 typedef handle< HANDLE, Disallow_Null, Windows_Generic_Destruction > Windows_Han
dle ; |
| 275 typedef handle< HMODULE, Disallow_Null, Windows_Generic_Destruction > Windows_Mo
dule_Handle ; |
275 | 276 |
276 #endif | 277 #endif |
OLD | NEW |