This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <std/mem.pat> | |
| u32 schemaVersion; | |
| u32 length; | |
| bitfield SchemaFlags | |
| { | |
| Sealed : 1; | |
| HostExtension : 1; | |
| padding : 30; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unsafe DateTime? GetSystemExpirationDate() => *(long*)0x7ffe02c8 switch | |
| { | |
| 0 => null, | |
| var x => DateTime.FromFileTime(x) | |
| }; | |
| var date = GetSystemExpirationDate(); | |
| Console.WriteLine(date); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cmake_minimum_required(VERSION 3.19) | |
| project(Hello) | |
| set(CPACK_GENERATOR "ZIP") | |
| include(CPack) | |
| find_path(GETTIMEOFDAY_INCLUDE_DIR NAMES "gettimeofday.h") | |
| find_library(GETTIMEOFDAY_LIBRARY gettimeofday) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs"> | |
| <head> | |
| <meta name="generator" content="PSPad editor, www.pspad.com" /> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
| <title>PRAKTICKÁ MZK - I</title> | |
| </head> |