(message: &str)
| 302 | } |
| 303 | |
| 304 | pub fn copy_fail(message: &str) -> Vec<u8> { |
| 305 | let mut writer = BufferWriter::default(); |
| 306 | writer.add_cstring(message); |
| 307 | writer.flush(Some(CODE_COPY_FAIL)) |
| 308 | } |
| 309 | |
| 310 | pub fn cancel(process_id: i32, secret_key: i32) -> Vec<u8> { |
| 311 | let mut buffer = vec![0u8; 16]; |
nothing calls this directly
no test coverage detected