├── .gitattributes ├── .gitignore ├── APIInfo-readme.txt ├── APIInfo.Asm ├── APIInfo.Def ├── APIInfo.Inc ├── APIInfo.dlg ├── APIInfo.rap ├── APIInfo.rc ├── APIInfo.xml ├── README.md ├── api-definitions ├── advapi32.api ├── comctl32.api ├── comdlg32.api ├── gdi32.api ├── gdiplus.api ├── kernel32.api ├── ntdll.api ├── psapi.api ├── shell32.api └── user32.api ├── images ├── APIInfo.ico ├── APIInfo.png ├── APIInfoGen.ico ├── APIInfoGenAPI.png ├── APIInfoOptions.ico └── APIInfoOptions.png ├── release ├── APIInfo-readme.txt └── APIInfo.dp32 └── res ├── APIInfoDlg.rc ├── APIInfoRes.rc └── APIInfoVer.rc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/.gitignore -------------------------------------------------------------------------------- /APIInfo-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/APIInfo-readme.txt -------------------------------------------------------------------------------- /APIInfo.Asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/APIInfo.Asm -------------------------------------------------------------------------------- /APIInfo.Def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/APIInfo.Def -------------------------------------------------------------------------------- /APIInfo.Inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/APIInfo.Inc -------------------------------------------------------------------------------- /APIInfo.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/APIInfo.dlg -------------------------------------------------------------------------------- /APIInfo.rap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/APIInfo.rap -------------------------------------------------------------------------------- /APIInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/APIInfo.rc -------------------------------------------------------------------------------- /APIInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/APIInfo.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/README.md -------------------------------------------------------------------------------- /api-definitions/advapi32.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/api-definitions/advapi32.api -------------------------------------------------------------------------------- /api-definitions/comctl32.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/api-definitions/comctl32.api -------------------------------------------------------------------------------- /api-definitions/comdlg32.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/api-definitions/comdlg32.api -------------------------------------------------------------------------------- /api-definitions/gdi32.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/api-definitions/gdi32.api -------------------------------------------------------------------------------- /api-definitions/gdiplus.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/api-definitions/gdiplus.api -------------------------------------------------------------------------------- /api-definitions/kernel32.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/api-definitions/kernel32.api -------------------------------------------------------------------------------- /api-definitions/ntdll.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/api-definitions/ntdll.api -------------------------------------------------------------------------------- /api-definitions/psapi.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/api-definitions/psapi.api -------------------------------------------------------------------------------- /api-definitions/shell32.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/api-definitions/shell32.api -------------------------------------------------------------------------------- /api-definitions/user32.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/api-definitions/user32.api -------------------------------------------------------------------------------- /images/APIInfo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/images/APIInfo.ico -------------------------------------------------------------------------------- /images/APIInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/images/APIInfo.png -------------------------------------------------------------------------------- /images/APIInfoGen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/images/APIInfoGen.ico -------------------------------------------------------------------------------- /images/APIInfoGenAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/images/APIInfoGenAPI.png -------------------------------------------------------------------------------- /images/APIInfoOptions.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/images/APIInfoOptions.ico -------------------------------------------------------------------------------- /images/APIInfoOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/images/APIInfoOptions.png -------------------------------------------------------------------------------- /release/APIInfo-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/release/APIInfo-readme.txt -------------------------------------------------------------------------------- /release/APIInfo.dp32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/release/APIInfo.dp32 -------------------------------------------------------------------------------- /res/APIInfoDlg.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/res/APIInfoDlg.rc -------------------------------------------------------------------------------- /res/APIInfoRes.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/res/APIInfoRes.rc -------------------------------------------------------------------------------- /res/APIInfoVer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrfearless/APIInfo-Plugin-x86/HEAD/res/APIInfoVer.rc --------------------------------------------------------------------------------