libmwemu 0.24.4

x86 32/64bits and system internals emulator, for securely emulating malware and other stuff.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
#[path = "../close_handle.rs"]
mod close_handle;
pub use close_handle::*;

#[path = "../crypt_create_hash.rs"]
mod crypt_create_hash;
pub use crypt_create_hash::*;

#[path = "../get_computer_name_a.rs"]
mod get_computer_name_a;
pub use get_computer_name_a::*;

#[path = "../get_last_error.rs"]
mod get_last_error;
pub use get_last_error::*;

#[path = "../get_startup_info_a.rs"]
mod get_startup_info_a;
pub use get_startup_info_a::*;

#[path = "../get_startup_info_w.rs"]
mod get_startup_info_w;
pub use get_startup_info_w::*;

#[path = "../get_std_handle.rs"]
mod get_std_handle;
pub use get_std_handle::*;

#[path = "../global_add_atom_a.rs"]
mod global_add_atom_a;
pub use global_add_atom_a::*;

#[path = "../query_performance_counter.rs"]
mod query_performance_counter;
pub use query_performance_counter::*;

#[path = "../set_error_mode.rs"]
mod set_error_mode;
pub use set_error_mode::*;

#[path = "../set_handle_count.rs"]
mod set_handle_count;
pub use set_handle_count::*;

#[path = "../set_last_error.rs"]
mod set_last_error;
pub use set_last_error::*;

#[path = "../sleep.rs"]
mod sleep;
pub use sleep::*;

#[path = "../win_exec.rs"]
mod win_exec;
pub use win_exec::*;

#[path = "../add_atom_a.rs"]
mod add_atom_a;
pub use add_atom_a::*;

#[path = "../add_atom_w.rs"]
mod add_atom_w;
pub use add_atom_w::*;

#[path = "../add_integrity_label_to_boundary_descriptor.rs"]
mod add_integrity_label_to_boundary_descriptor;
pub use add_integrity_label_to_boundary_descriptor::*;

#[path = "../add_local_alternate_computer_name_w.rs"]
mod add_local_alternate_computer_name_w;
pub use add_local_alternate_computer_name_w::*;

#[path = "../beep_implementation.rs"]
mod beep_implementation;
pub use beep_implementation::*;

#[path = "../bind_io_completion_callback.rs"]
mod bind_io_completion_callback;
pub use bind_io_completion_callback::*;

#[path = "../byte_match.rs"]
mod byte_match;
pub use byte_match::*;

#[path = "../check_elevation.rs"]
mod check_elevation;
pub use check_elevation::*;

#[path = "../check_name_legal_dos8_dot3_a.rs"]
mod check_name_legal_dos8_dot3_a;
pub use check_name_legal_dos8_dot3_a::*;

#[path = "../check_name_legal_dos8_dot3_w.rs"]
mod check_name_legal_dos8_dot3_w;
pub use check_name_legal_dos8_dot3_w::*;

#[path = "../convert_nls_day_of_week_to_win32_day_of_week.rs"]
mod convert_nls_day_of_week_to_win32_day_of_week;
pub use convert_nls_day_of_week_to_win32_day_of_week::*;

#[path = "../create_boundary_descriptor_a.rs"]
mod create_boundary_descriptor_a;
pub use create_boundary_descriptor_a::*;

#[path = "../create_hard_link_transacted_a.rs"]
mod create_hard_link_transacted_a;
pub use create_hard_link_transacted_a::*;

#[path = "../create_job_object_a.rs"]
mod create_job_object_a;
pub use create_job_object_a::*;

#[path = "../create_job_object_w.rs"]
mod create_job_object_w;
pub use create_job_object_w::*;

#[path = "../create_socket_handle.rs"]
mod create_socket_handle;
pub use create_socket_handle::*;

#[path = "../create_symbolic_link_a.rs"]
mod create_symbolic_link_a;
pub use create_symbolic_link_a::*;

#[path = "../create_symbolic_link_transacted_a.rs"]
mod create_symbolic_link_transacted_a;
pub use create_symbolic_link_transacted_a::*;

#[path = "../create_symbolic_link_transacted_w.rs"]
mod create_symbolic_link_transacted_w;
pub use create_symbolic_link_transacted_w::*;

#[path = "../device_name_compare.rs"]
mod device_name_compare;
pub use device_name_compare::*;

#[path = "../dns_hostname_to_computer_name_a.rs"]
mod dns_hostname_to_computer_name_a;
pub use dns_hostname_to_computer_name_a::*;

#[path = "../dns_hostname_to_computer_name_w.rs"]
mod dns_hostname_to_computer_name_w;
pub use dns_hostname_to_computer_name_w::*;

#[path = "../enumerate_local_computer_names_a.rs"]
mod enumerate_local_computer_names_a;
pub use enumerate_local_computer_names_a::*;

#[path = "../enumerate_local_computer_names_w.rs"]
mod enumerate_local_computer_names_w;
pub use enumerate_local_computer_names_w::*;

#[path = "../fatal_exit.rs"]
mod fatal_exit;
pub use fatal_exit::*;

#[path = "../find_atom_a.rs"]
mod find_atom_a;
pub use find_atom_a::*;

#[path = "../find_atom_w.rs"]
mod find_atom_w;
pub use find_atom_w::*;

#[path = "../free_memory_job_object.rs"]
mod free_memory_job_object;
pub use free_memory_job_object::*;

#[path = "../get_application_restart_settings_worker.rs"]
mod get_application_restart_settings_worker;
pub use get_application_restart_settings_worker::*;

#[path = "../get_atom_name_a.rs"]
mod get_atom_name_a;
pub use get_atom_name_a::*;

#[path = "../get_atom_name_w.rs"]
mod get_atom_name_w;
pub use get_atom_name_w::*;

#[path = "../get_binary_type_w.rs"]
mod get_binary_type_w;
pub use get_binary_type_w::*;

#[path = "../get_com_plus_package_install_status.rs"]
mod get_com_plus_package_install_status;
pub use get_com_plus_package_install_status::*;

#[path = "../get_computer_name_w.rs"]
mod get_computer_name_w;
pub use get_computer_name_w::*;

#[path = "../get_config_dialog_name.rs"]
mod get_config_dialog_name;
pub use get_config_dialog_name::*;

#[path = "../get_corrupt_detection_state.rs"]
mod get_corrupt_detection_state;
pub use get_corrupt_detection_state::*;

#[path = "../get_current_ja_era_index.rs"]
mod get_current_ja_era_index;
pub use get_current_ja_era_index::*;

#[path = "../get_device_power_state.rs"]
mod get_device_power_state;
pub use get_device_power_state::*;

#[path = "../get_duration_format.rs"]
mod get_duration_format;
pub use get_duration_format::*;

#[path = "../get_expanded_name_a.rs"]
mod get_expanded_name_a;
pub use get_expanded_name_a::*;

#[path = "../get_expanded_name_w.rs"]
mod get_expanded_name_w;
pub use get_expanded_name_w::*;

#[path = "../get_handle_context.rs"]
mod get_handle_context;
pub use get_handle_context::*;

#[path = "../get_japanese_era_items.rs"]
mod get_japanese_era_items;
pub use get_japanese_era_items::*;

#[path = "../get_known_japan_era_count.rs"]
mod get_known_japan_era_count;
pub use get_known_japan_era_count::*;

#[path = "../get_max_japan_eras.rs"]
mod get_max_japan_eras;
pub use get_max_japan_eras::*;

#[path = "../get_max_japan_years.rs"]
mod get_max_japan_years;
pub use get_max_japan_years::*;

#[path = "../get_numa_available_memory_node.rs"]
mod get_numa_available_memory_node;
pub use get_numa_available_memory_node::*;

#[path = "../get_numa_available_memory_node_ex.rs"]
mod get_numa_available_memory_node_ex;
pub use get_numa_available_memory_node_ex::*;

#[path = "../get_numa_proximity_node.rs"]
mod get_numa_proximity_node;
pub use get_numa_proximity_node::*;

#[path = "../global_add_atom_ex_a.rs"]
mod global_add_atom_ex_a;
pub use global_add_atom_ex_a::*;

#[path = "../global_add_atom_ex_w.rs"]
mod global_add_atom_ex_w;
pub use global_add_atom_ex_w::*;

#[path = "../global_add_atom_w.rs"]
mod global_add_atom_w;
pub use global_add_atom_w::*;

#[path = "../global_find_atom_a.rs"]
mod global_find_atom_a;
pub use global_find_atom_a::*;

#[path = "../global_find_atom_w.rs"]
mod global_find_atom_w;
pub use global_find_atom_w::*;

#[path = "../global_fix.rs"]
mod global_fix;
pub use global_fix::*;

#[path = "../global_flags.rs"]
mod global_flags;
pub use global_flags::*;

#[path = "../global_get_atom_name_a.rs"]
mod global_get_atom_name_a;
pub use global_get_atom_name_a::*;

#[path = "../global_get_atom_name_w.rs"]
mod global_get_atom_name_w;
pub use global_get_atom_name_w::*;

#[path = "../global_handle.rs"]
mod global_handle;
pub use global_handle::*;

#[path = "../global_lock.rs"]
mod global_lock;
pub use global_lock::*;

#[path = "../global_memory_status.rs"]
mod global_memory_status;
pub use global_memory_status::*;

#[path = "../global_re_alloc.rs"]
mod global_re_alloc;
pub use global_re_alloc::*;

#[path = "../global_size.rs"]
mod global_size;
pub use global_size::*;

#[path = "../global_un_wire.rs"]
mod global_un_wire;
pub use global_un_wire::*;

#[path = "../global_unfix.rs"]
mod global_unfix;
pub use global_unfix::*;

#[path = "../global_unlock.rs"]
mod global_unlock;
pub use global_unlock::*;

#[path = "../global_wire.rs"]
mod global_wire;
pub use global_wire::*;

#[path = "../init_atom_table.rs"]
mod init_atom_table;
pub use init_atom_table::*;

#[path = "../internal_co_std_marshal_object.rs"]
mod internal_co_std_marshal_object;
pub use internal_co_std_marshal_object::*;

#[path = "../is_bad_code_ptr.rs"]
mod is_bad_code_ptr;
pub use is_bad_code_ptr::*;

#[path = "../is_bad_huge_read_ptr.rs"]
mod is_bad_huge_read_ptr;
pub use is_bad_huge_read_ptr::*;

#[path = "../is_bad_huge_write_ptr.rs"]
mod is_bad_huge_write_ptr;
pub use is_bad_huge_write_ptr::*;

#[path = "../is_bad_read_ptr.rs"]
mod is_bad_read_ptr;
pub use is_bad_read_ptr::*;

#[path = "../is_bad_write_ptr.rs"]
mod is_bad_write_ptr;
pub use is_bad_write_ptr::*;

#[path = "../is_fusion_fully_supported.rs"]
mod is_fusion_fully_supported;
pub use is_fusion_fully_supported::*;

#[path = "../is_oobe_supported.rs"]
mod is_oobe_supported;
pub use is_oobe_supported::*;

#[path = "../load_app_init_dlls_implementation.rs"]
mod load_app_init_dlls_implementation;
pub use load_app_init_dlls_implementation::*;

#[path = "../local_compact.rs"]
mod local_compact;
pub use local_compact::*;

#[path = "../local_flags.rs"]
mod local_flags;
pub use local_flags::*;

#[path = "../local_handle.rs"]
mod local_handle;
pub use local_handle::*;

#[path = "../local_shrink.rs"]
mod local_shrink;
pub use local_shrink::*;

#[path = "../local_size.rs"]
mod local_size;
pub use local_size::*;

#[path = "../lz_close.rs"]
mod lz_close;
pub use lz_close::*;

#[path = "../lz_copy.rs"]
mod lz_copy;
pub use lz_copy::*;

#[path = "../lz_init.rs"]
mod lz_init;
pub use lz_init::*;

#[path = "../lz_read.rs"]
mod lz_read;
pub use lz_read::*;

#[path = "../lz_seek.rs"]
mod lz_seek;
pub use lz_seek::*;

#[path = "../lz_start.rs"]
mod lz_start;
pub use lz_start::*;

#[path = "../machine_prefers_numeric_first_year.rs"]
mod machine_prefers_numeric_first_year;
pub use machine_prefers_numeric_first_year::*;

#[path = "../mul_div.rs"]
mod mul_div;
pub use mul_div::*;

#[path = "../non_installer_default.rs"]
mod non_installer_default;
pub use non_installer_default::*;

#[path = "../oobe_complete.rs"]
mod oobe_complete;
pub use oobe_complete::*;

#[path = "../oobe_complete_wnf_callback.rs"]
mod oobe_complete_wnf_callback;
pub use oobe_complete_wnf_callback::*;

#[path = "../oobe_complete_wnf_query_callback.rs"]
mod oobe_complete_wnf_query_callback;
pub use oobe_complete_wnf_query_callback::*;

#[path = "../open_job_object_a.rs"]
mod open_job_object_a;
pub use open_job_object_a::*;

#[path = "../open_job_object_w.rs"]
mod open_job_object_w;
pub use open_job_object_w::*;

#[path = "../open_private_namespace_a.rs"]
mod open_private_namespace_a;
pub use open_private_namespace_a::*;

#[path = "../power_clear_request.rs"]
mod power_clear_request;
pub use power_clear_request::*;

#[path = "../power_create_request.rs"]
mod power_create_request;
pub use power_create_request::*;

#[path = "../power_set_request.rs"]
mod power_set_request;
pub use power_set_request::*;

#[path = "../query_information_job_object.rs"]
mod query_information_job_object;
pub use query_information_job_object::*;

#[path = "../query_io_rate_control_information_job_object.rs"]
mod query_io_rate_control_information_job_object;
pub use query_io_rate_control_information_job_object::*;

#[path = "../raise_invalid16_bit_exe_error.rs"]
mod raise_invalid16_bit_exe_error;
pub use raise_invalid16_bit_exe_error::*;

#[path = "../register_application_recovery_callback.rs"]
mod register_application_recovery_callback;
pub use register_application_recovery_callback::*;

#[path = "../register_application_restart.rs"]
mod register_application_restart;
pub use register_application_restart::*;

#[path = "../request_wakeup_latency.rs"]
mod request_wakeup_latency;
pub use request_wakeup_latency::*;

#[path = "../return_mem16_data.rs"]
mod return_mem16_data;
pub use return_mem16_data::*;

#[path = "../sbp_is_trace_enabled.rs"]
mod sbp_is_trace_enabled;
pub use sbp_is_trace_enabled::*;

#[path = "../set_com_plus_package_install_status.rs"]
mod set_com_plus_package_install_status;
pub use set_com_plus_package_install_status::*;

#[path = "../set_information_job_object.rs"]
mod set_information_job_object;
pub use set_information_job_object::*;

#[path = "../set_io_rate_control_information_job_object.rs"]
mod set_io_rate_control_information_job_object;
pub use set_io_rate_control_information_job_object::*;

#[path = "../set_local_primary_computer_name_w.rs"]
mod set_local_primary_computer_name_w;
pub use set_local_primary_computer_name_w::*;

#[path = "../u_long_add.rs"]
mod u_long_add;
pub use u_long_add::*;

#[path = "../u_long_long_to_u_long.rs"]
mod u_long_long_to_u_long;
pub use u_long_long_to_u_long::*;

#[path = "../u_long_mult.rs"]
mod u_long_mult;
pub use u_long_mult::*;

#[path = "../unregister_application_recovery_callback.rs"]
mod unregister_application_recovery_callback;
pub use unregister_application_recovery_callback::*;

#[path = "../unregister_application_restart.rs"]
mod unregister_application_restart;
pub use unregister_application_restart::*;