| 387 | iSndSetExternalCallback(callback); |
| 388 | } |
| 389 | |
| 390 | void reset_faders() |
| 391 | { |
| 392 | faders_active = 0; |
| 393 | } |
| 394 | |
| 395 | class fade_data { |
| 396 | // total size: 0x18 |
| 397 | public: |
| 398 | unsigned char in; // offset 0x0, size 0x1 |
| 399 | unsigned int handle; // offset 0x4, size 0x4 |
| 400 | float start_delay; // offset 0x8, size 0x4 |
| 401 | float time; // offset 0xC, size 0x4 |
| 402 | float end_time; // offset 0x10, size 0x4 |
| 403 | float volume; // offset 0x14, size 0x4 |
| 404 | |
| 405 | void operator=(const fade_data& rhs); |
| 406 | }; |
| 407 | |
| 408 | void fade_data::operator=(const fade_data& rhs) |
| 409 | { |
| 410 | in = rhs.in; |
| 411 | handle = rhs.handle; |
| 412 | start_delay = rhs.start_delay; |
| 413 | time = rhs.time; |
no outgoing calls
no test coverage detected