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
| #import <objc/objc-runtime.h> | |
| #define LOAD_CLASS(name) LOAD_CLASS_BY_NAME(#name) | |
| #if __OBJC2__ | |
| #if TARGET_RT_64_BIT | |
| #define LOAD_CLASS_BY_NAME(name) \ | |
| asm(\ | |
| ".section __DATA,__objc_classrefs,regular,no_dead_strip\n"\ | |
| ".align 3\n"\ | |
| "L_OBJC_CLASS_"name":\n"\ |
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
| ; Save this code to inf file and install it | |
| ; | |
| ; "CMD Prompt Here" PowerToy | |
| ; | |
| ; Copyright 1996 Microsoft Corporation | |
| ; | |
| [version] | |
| signature="$CHICAGO$" | |
| [CmdHereInstall] |
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
| #define stl_foreach(v, c) for (typeof(c.begin()) v = c.begin(); v != c.end(); ++v) |
NewerOlder