📄 dll-4.c
字号:
// Build don't link:// Skip if not target: arm-*pe// Ensure dllexport overrides dllimport.// set compiler_result "\.section${spaces}\.drectve\n\[^\n\]*-export:foo1.*\.section${spaces}\.drectve\n\[^\n\]*-export:foo2"// set not_compiler_result "(__imp_foo1|__imp_foo2)"__declspec (dllimport) int foo1 ();__declspec (dllexport) int foo1 ();__declspec (dllexport) int foo2 ();__declspec (dllimport) int foo2 ();__declspec (dllexport) int foo1 () { return foo2 (); }__declspec (dllexport) int foo2 () { return foo1 (); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -