This file contains 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
/******************************************************************************* | |
* The MIT License (MIT) | |
* | |
* Copyright (c) 2023 DigiDNA - www.imazing.com | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is |
This file contains 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
PDF_set_gstate: Access Violation - Attempt to read inaccessible data at address 0x0 | |
---------- | |
Process: iMazing.exe [5176] | |
Path: C:\Program Files\DigiDNA\iMazing\iMazing.exe | |
Code Type: X86-64 (Native) | |
Responsible: pdflib.dll | |
Date/Time: 2019-10-05 22:03:10 |
This file contains 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
clang++ -std=c++11 -Wall -o Build/Release/Products/x86_64/ISOBMFF-Dump ISOBMFF-Dump/main.cpp Build/Release/Products/x86_64/libISOBMFF.a -I ISOBMFF/include -I Submodules/PIMPL/PIMPL/include |
This file contains 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
/******************************************************************************* | |
* The MIT License (MIT) | |
* | |
* Copyright (c) 2017 Jean-David Gadina - www.xs-labs.com | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is |
This file contains 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
typedef Class Klasse; | |
typedef BOOL Wahrheit; | |
typedef SEL Wahler; | |
typedef NSZone NSBereich; | |
typedef void leer; | |
typedef id kennung; | |
#define NSObjekt NSObject | |
#define NSBereich NSZone |
This file contains 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
int __ZL34DTDKCircularBufferGetMonotonicCopyP18DTDKCircularBuffer(void * arg0) { | |
rbx = arg0; | |
rcx = *(rbx + 0x10); | |
if (rcx == 0x0) goto loc_3a18d; | |
loc_3a16b: | |
if (rcx >= *rbx) goto loc_3a1ae; | |
loc_3a170: | |
rax = [NSData dataWithBytes:rbx + 0x18 length:rcx]; |
This file contains 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 <functional> | |
#include <iostream> | |
#include <objc/runtime.h> | |
#include <objc/message.h> | |
template< typename _R_, typename ... _T_ > | |
_R_ CXX_IMP( id self, SEL _cmd, _T_ ... args ) | |
{ | |
Class cls; | |
id assoc; |
This file contains 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 <iostream> | |
template< int N > | |
struct Fibonacci | |
{ | |
static constexpr int value = Fibonacci< N - 1 >::value + Fibonacci< N - 2 >::value; | |
}; | |
template<> | |
struct Fibonacci< 1 > |
This file contains 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
/*! | |
* @author Jean-David Gadina | |
* @copyright (c) 2015, Jean-David Gadina - www.xs-labs.com | |
*/ | |
#include <stdio.h> | |
#include <stdbool.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include "git2.h" |
This file contains 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 <stdio.h> | |
struct s1 | |
{ | |
int i; | |
}; | |
struct s2 | |
{ | |
int i; |
NewerOlder