├── .gitignore ├── PE.inc ├── Bak └── .gitkeep ├── OLEDLG.asm ├── OLEDLG.inc ├── OLEDLG.rc ├── README.md ├── Res └── .gitkeep ├── OLEDLG.prra ├── OLEDLG.txt └── OLEDLG.def /.gitignore: -------------------------------------------------------------------------------- 1 | *.dll 2 | *.lib 3 | *.map 4 | *.obj 5 | *.pdb 6 | *.res 7 | -------------------------------------------------------------------------------- /PE.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvtx/OLEDLG-for-Visual-Assist-X/HEAD/PE.inc -------------------------------------------------------------------------------- /Bak/.gitkeep: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file !.gitkeep -------------------------------------------------------------------------------- /OLEDLG.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvtx/OLEDLG-for-Visual-Assist-X/HEAD/OLEDLG.asm -------------------------------------------------------------------------------- /OLEDLG.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvtx/OLEDLG-for-Visual-Assist-X/HEAD/OLEDLG.inc -------------------------------------------------------------------------------- /OLEDLG.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvtx/OLEDLG-for-Visual-Assist-X/HEAD/OLEDLG.rc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvtx/OLEDLG-for-Visual-Assist-X/HEAD/README.md -------------------------------------------------------------------------------- /Res/.gitkeep: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file !.gitkeep -------------------------------------------------------------------------------- /OLEDLG.prra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvtx/OLEDLG-for-Visual-Assist-X/HEAD/OLEDLG.prra -------------------------------------------------------------------------------- /OLEDLG.txt: -------------------------------------------------------------------------------- 1 | 2 | This project template for RadASM AddIns is a get-you-starter to make the grunt work easier to manage. 3 | -------------------------------------------------------------------------------- /OLEDLG.def: -------------------------------------------------------------------------------- 1 | ;------------------------------------------------------------------------------------- 2 | ; OLEDLG.Def 3 | ;------------------------------------------------------------------------------------- 4 | LIBRARY OLEDLG.DLL 5 | 6 | ; OleUIBusyA 7 | EXPORTS DllEntry @8 NONAME --------------------------------------------------------------------------------