📄 shellinj.h
字号:
//Shell-Injection DLL, by Eric Heimburg
//You can reach me at heimburg@cs.ucf.edu
#ifndef __SHELLINJ_H
#define __SHELLINJ_H
#ifndef _INC_WINDOWS
#define STRICT
#include <windows.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
STDAPI_(BOOL) SIStartup( void );
STDAPI_(void) SIShutdown( void );
STDAPI_(BOOL) SIAddClientWindow(HWND hWnd, UINT wmMsg);
STDAPI_(BOOL) SIRemoveClientWindow(HWND hWnd);
STDAPI_(void) SIGetMinRect(RECT *pRect);
#ifdef __cplusplus
}
#endif
#endif //__SHELLINJ_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -