├── Asm ├── Dll │ ├── prueba.asm │ └── prueba.dll ├── Fasm │ ├── EXAMPLES │ │ ├── BEER │ │ │ ├── BEER.ASM │ │ │ └── BEER.EXE │ │ ├── DDRAW │ │ │ ├── DDRAW.ASM │ │ │ ├── DDRAW.EXE │ │ │ ├── DDRAW.GIF │ │ │ ├── DDRAW.INC │ │ │ └── GIF87A.INC │ │ ├── DIALOG │ │ │ ├── DIALOG.ASM │ │ │ └── DIALOG.EXE │ │ ├── DLL │ │ │ ├── ERRORMSG.ASM │ │ │ ├── ERRORMSG.DLL │ │ │ ├── LASTERR.ASM │ │ │ └── LASTERR.EXE │ │ ├── HELLO │ │ │ ├── HELLO.ASM │ │ │ └── HELLO.EXE │ │ ├── MINIPAD │ │ │ ├── MINIPAD.ASM │ │ │ ├── MINIPAD.EXE │ │ │ └── MINIPAD.ICO │ │ ├── MSCOFF │ │ │ ├── MSCOFF.ASM │ │ │ └── MSCOFF.OBJ │ │ ├── OPENGL │ │ │ ├── OPENGL.ASM │ │ │ ├── OPENGL.EXE │ │ │ └── OPENGL.INC │ │ ├── PEDEMO │ │ │ ├── PEDEMO.ASM │ │ │ └── PEDEMO.EXE │ │ ├── TEMPLATE │ │ │ ├── TEMPLATE.ASM │ │ │ └── TEMPLATE.EXE │ │ ├── USECOM │ │ │ ├── USECOM.ASM │ │ │ └── USECOM.EXE │ │ └── WIN64 │ │ │ ├── MANDEL │ │ │ ├── DDRAW64.INC │ │ │ ├── MANDEL.ASM │ │ │ └── MANDEL.EXE │ │ │ ├── OPENGL │ │ │ ├── OPENGL.ASM │ │ │ └── OPENGL.EXE │ │ │ ├── PE64DEMO │ │ │ ├── PE64DEMO.ASM │ │ │ └── PE64DEMO.EXE │ │ │ ├── TEMPLATE │ │ │ ├── TEMPLATE.ASM │ │ │ └── TEMPLATE.EXE │ │ │ └── USECOM │ │ │ ├── USECOM.ASM │ │ │ └── USECOM.EXE │ ├── FASM.PDF │ ├── FASMW.INI │ ├── INCLUDE │ │ ├── ADVAPI32.INC │ │ ├── API │ │ │ ├── ADVAPI32.INC │ │ │ ├── COMCTL32.INC │ │ │ ├── COMDLG32.INC │ │ │ ├── GDI32.INC │ │ │ ├── KERNEL32.INC │ │ │ ├── SHELL32.INC │ │ │ ├── USER32.INC │ │ │ └── WSOCK32.INC │ │ ├── COMCTL32.INC │ │ ├── COMDLG32.INC │ │ ├── ENCODING │ │ │ ├── UTF8.INC │ │ │ ├── WIN1250.INC │ │ │ ├── WIN1251.INC │ │ │ ├── WIN1252.INC │ │ │ ├── WIN1253.INC │ │ │ ├── WIN1254.INC │ │ │ ├── WIN1255.INC │ │ │ ├── WIN1256.INC │ │ │ ├── WIN1257.INC │ │ │ ├── WIN1258.INC │ │ │ └── WIN874.INC │ │ ├── EQUATES │ │ │ ├── COMCTL32.INC │ │ │ ├── COMCTL64.INC │ │ │ ├── COMDLG32.INC │ │ │ ├── COMDLG64.INC │ │ │ ├── GDI32.INC │ │ │ ├── KERNEL32.INC │ │ │ ├── KERNEL64.INC │ │ │ ├── SHELL32.INC │ │ │ ├── SHELL64.INC │ │ │ ├── USER32.INC │ │ │ ├── USER64.INC │ │ │ └── WSOCK32.INC │ │ ├── GDI32.INC │ │ ├── KERNEL32.INC │ │ ├── MACRO │ │ │ ├── COM32.INC │ │ │ ├── COM64.INC │ │ │ ├── EXPORT.INC │ │ │ ├── IF.INC │ │ │ ├── IMPORT32.INC │ │ │ ├── IMPORT64.INC │ │ │ ├── MASM.INC │ │ │ ├── PROC32.INC │ │ │ ├── PROC64.INC │ │ │ ├── RESOURCE.INC │ │ │ └── STRUCT.INC │ │ ├── PCOUNT │ │ │ ├── ADVAPI32.INC │ │ │ ├── COMCTL32.INC │ │ │ ├── COMDLG32.INC │ │ │ ├── GDI32.INC │ │ │ ├── KERNEL32.INC │ │ │ ├── SHELL32.INC │ │ │ ├── USER32.INC │ │ │ └── WSOCK32.INC │ │ ├── SHELL32.INC │ │ ├── USER32.INC │ │ ├── WIN32A.INC │ │ ├── WIN32AX.INC │ │ ├── WIN32AXP.INC │ │ ├── WIN32W.INC │ │ ├── WIN32WX.INC │ │ ├── WIN32WXP.INC │ │ ├── WIN64A.INC │ │ ├── WIN64AX.INC │ │ ├── WIN64AXP.INC │ │ ├── WIN64W.INC │ │ ├── WIN64WX.INC │ │ ├── WIN64WXP.INC │ │ └── WSOCK32.INC │ ├── LICENSE.TXT │ ├── SOURCE │ │ ├── ASSEMBLE.INC │ │ ├── AVX.INC │ │ ├── DOS │ │ │ ├── FASM.ASM │ │ │ ├── MODES.INC │ │ │ └── SYSTEM.INC │ │ ├── ERRORS.INC │ │ ├── EXPRCALC.INC │ │ ├── EXPRPARS.INC │ │ ├── FORMATS.INC │ │ ├── IDE │ │ │ ├── BLOCKS.INC │ │ │ ├── EDIT.INC │ │ │ ├── FASMD │ │ │ │ └── FASMD.ASM │ │ │ ├── FASMW │ │ │ │ ├── ASMEDIT.ASH │ │ │ │ ├── ASMEDIT.INC │ │ │ │ ├── FASM.INC │ │ │ │ ├── FASMW.ASM │ │ │ │ └── RESOURCE │ │ │ │ │ ├── ASSIGN.BMP │ │ │ │ │ └── FASMW.ICO │ │ │ ├── MEMORY.INC │ │ │ ├── NAVIGATE.INC │ │ │ ├── SEARCH.INC │ │ │ ├── UNDO.INC │ │ │ └── VARIABLE.INC │ │ ├── LIBC │ │ │ ├── FASM.ASM │ │ │ └── SYSTEM.INC │ │ ├── LINUX │ │ │ ├── FASM.ASM │ │ │ └── SYSTEM.INC │ │ ├── MESSAGES.INC │ │ ├── PARSER.INC │ │ ├── PREPROCE.INC │ │ ├── SYMBDUMP.INC │ │ ├── TABLES.INC │ │ ├── VARIABLE.INC │ │ ├── VERSION.INC │ │ ├── WIN32 │ │ │ ├── FASM.ASM │ │ │ └── SYSTEM.INC │ │ └── X86_64.INC │ ├── TOOLS │ │ ├── DOS │ │ │ ├── LISTING.ASM │ │ │ ├── LOADER.INC │ │ │ ├── PREPSRC.ASM │ │ │ ├── SYMBOLS.ASM │ │ │ └── SYSTEM.INC │ │ ├── LIBC │ │ │ ├── CCALL.INC │ │ │ ├── LISTING.ASM │ │ │ ├── PREPSRC.ASM │ │ │ ├── SYMBOLS.ASM │ │ │ └── SYSTEM.INC │ │ ├── LISTING.INC │ │ ├── PREPSRC.INC │ │ ├── README.TXT │ │ ├── SYMBOLS.INC │ │ └── WIN32 │ │ │ ├── LISTING.ASM │ │ │ ├── PREPSRC.ASM │ │ │ ├── SYMBOLS.ASM │ │ │ └── SYSTEM.INC │ ├── WHATSNEW.TXT │ └── fasmw16932.zip ├── Hook IAT.asm ├── Impresion por consola.ASM ├── MASM │ ├── GDI sin dependencia │ ├── OpenFile sin dependencia │ └── eject libiano.ASM ├── Shell code.ASM ├── Tutoriales │ ├── tut1.txt │ ├── tut2.txt │ └── tut3.txt ├── WriteProcessMemory Hook.ASM ├── algoritmo lz.ASM ├── calc masm.asm ├── call avec ret opcode.ASM ├── call avec ret.ASM ├── debug.ASM ├── ejec libiao.ASM ├── ejemplo fasm 1.ASM ├── ejemplo fasm 2.ASM ├── inyeccion dll.txt ├── inyectar calculadora.ASM ├── lee por consola.ASM ├── piramide.ASM ├── practica 1.ASM ├── practica 2.ASM ├── practica 3.ASM ├── practica4.ASM └── prueba 6.ASM ├── C . C++ ├── C++ (variado) │ ├── C++ Codes │ │ ├── Old Stuff │ │ │ ├── ApI de Windows -- GUI │ │ │ │ ├── Aps Imagenes │ │ │ │ │ ├── BBThumbs.dat │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── Objects │ │ │ │ │ │ └── MingW │ │ │ │ │ │ │ ├── Project1_private.h │ │ │ │ │ │ │ ├── Project1_private.rc │ │ │ │ │ │ │ └── Project1_private.res │ │ │ │ │ ├── Project1.dev │ │ │ │ │ ├── Project1.layout │ │ │ │ │ ├── Project1_private.h │ │ │ │ │ ├── Project1_private.rc │ │ │ │ │ ├── Project1_private.res │ │ │ │ │ ├── Resource icono.rc │ │ │ │ │ ├── bitmap.bip.jpg │ │ │ │ │ ├── bitmap.bmp │ │ │ │ │ ├── icono.ico │ │ │ │ │ └── main.cpp │ │ │ │ ├── AvoidDance Stuff │ │ │ │ │ ├── Datos.rc │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── Objects │ │ │ │ │ │ └── MingW │ │ │ │ │ │ │ ├── Project1_private.h │ │ │ │ │ │ │ ├── Project1_private.rc │ │ │ │ │ │ │ └── Project1_private.res │ │ │ │ │ ├── Project1.dev │ │ │ │ │ ├── Project1.layout │ │ │ │ │ ├── icono.ico │ │ │ │ │ └── main.cpp │ │ │ │ ├── Capta Comentario Texto Nuevo │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── Project1.dev │ │ │ │ │ ├── Project1.layout │ │ │ │ │ └── main.cpp │ │ │ │ ├── Capta el comentarío │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── Practica 1.dev │ │ │ │ │ ├── Practica 1.layout │ │ │ │ │ ├── Resource icono.rc │ │ │ │ │ ├── icono.ico │ │ │ │ │ └── main.cpp │ │ │ │ ├── Curses App │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── Project2.dev │ │ │ │ │ ├── Project2.ico │ │ │ │ │ ├── Project2_private.h │ │ │ │ │ ├── Project2_private.rc │ │ │ │ │ ├── Project2_private.res │ │ │ │ │ └── main.cpp │ │ │ │ ├── Hello Word Msg Box.cpp │ │ │ │ ├── Practica FULL │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── Objects │ │ │ │ │ │ └── MingW │ │ │ │ │ │ │ ├── Project1_private.h │ │ │ │ │ │ │ ├── Project1_private.rc │ │ │ │ │ │ │ └── Project1_private.res │ │ │ │ │ ├── Project1.dev │ │ │ │ │ ├── Project1.layout │ │ │ │ │ ├── Project1_private.h │ │ │ │ │ ├── Project1_private.rc │ │ │ │ │ ├── Project1_private.res │ │ │ │ │ ├── icono.ico │ │ │ │ │ ├── icono.rc │ │ │ │ │ └── main.cpp │ │ │ │ └── Progress Bar │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── Project1.dev │ │ │ │ │ ├── Project1.exe.Manifest │ │ │ │ │ ├── Project1_private.h │ │ │ │ │ ├── Project1_private.rc │ │ │ │ │ ├── Project1_private.res │ │ │ │ │ └── main_program.cpp │ │ │ ├── C ++ for dummies │ │ │ │ ├── Arrays, bucles, funciones.cpp │ │ │ │ ├── Bucle infinito for(;;).cpp │ │ │ │ ├── Ch1 C#.cpp │ │ │ │ ├── Ch1. C++.cpp │ │ │ │ ├── Datos hexadecimal.cpp │ │ │ │ ├── Funciones Bucles Dobles.cpp │ │ │ │ ├── Funciones Bucles.cpp │ │ │ │ └── Uso de las variables booleanas.cpp │ │ │ ├── C++ praticas │ │ │ │ ├── Arrays Vectores c++.cpp │ │ │ │ ├── Calcula la tabla c++.cpp │ │ │ │ ├── Calculadora c++.cpp │ │ │ │ ├── Caracteres leidos desde el teclado.cpp │ │ │ │ ├── Completa1 C++.cpp │ │ │ │ ├── Convertir de Farenheit a Celcius c++.cpp │ │ │ │ ├── Funcion Puts.cpp │ │ │ │ ├── Función For c++.cpp │ │ │ │ ├── Función while c++.cpp │ │ │ │ ├── Imprimir el alfabeto mayus - minus.cpp │ │ │ │ ├── Libreria conio │ │ │ │ │ ├── Fpon.cpp │ │ │ │ │ ├── MoveText.cpp │ │ │ │ │ ├── Textattr.cpp │ │ │ │ │ └── gets.cpp │ │ │ │ ├── Manejo de ficheros c++.cpp │ │ │ │ ├── Matrizes.cpp │ │ │ │ ├── Otra barra de progreso.cpp │ │ │ │ ├── Otra función For c++.cpp │ │ │ │ ├── STRING, CHAR FUNCIONES.cpp │ │ │ │ ├── Saber el numero de cada letra.cpp │ │ │ │ ├── Strings.cpp │ │ │ │ ├── hola.txt │ │ │ │ ├── matrises 2.cpp │ │ │ │ ├── más calculadoras.cpp │ │ │ │ ├── otra calculadora.cpp │ │ │ │ └── srand.cpp │ │ │ ├── Cosas viejas │ │ │ │ ├── Ap,c.cpp │ │ │ │ ├── Hola mundo.cpp │ │ │ │ ├── IF.cpp │ │ │ │ ├── Preeba.cpp │ │ │ │ ├── Prueba.c │ │ │ │ ├── Prueba1.c │ │ │ │ └── Sin Nombre1.cpp │ │ │ ├── Ejercicios │ │ │ │ ├── C con clase problema 1.cpp │ │ │ │ ├── Ejercicios de I.O.cpp │ │ │ │ ├── For anidados.cpp │ │ │ │ ├── Imprimir numeros del 1 al 20 y verificar si son divisibles por 3.cpp │ │ │ │ ├── Imprimir una canción.cpp │ │ │ │ ├── Inferno #1.cpp │ │ │ │ ├── Inferno #2.cpp │ │ │ │ ├── Modificación de memoria.cpp │ │ │ │ └── Que pida varios números, hasta que el usuario quiera terminar, y los descomponga en factores primos..cpp │ │ │ ├── Funciones │ │ │ │ ├── Es windows nt.cpp │ │ │ │ ├── Funcion copiar archivo.cpp │ │ │ │ ├── Función Strlen.cpp │ │ │ │ ├── Numero antes y después del ingresado.cpp │ │ │ │ ├── captura.h │ │ │ │ ├── funcion exportada.cpp │ │ │ │ ├── strlen.cpp │ │ │ │ └── uso de a to i.cpp │ │ │ ├── Libreria estatica │ │ │ │ ├── Makefile.win │ │ │ │ ├── Project1.a │ │ │ │ ├── Project1.dev │ │ │ │ ├── Project1.layout │ │ │ │ ├── header.h │ │ │ │ └── main.cpp │ │ │ ├── Nuevas practicas │ │ │ │ ├── Ejemplo uso for.cpp │ │ │ │ ├── Funcion IF.cpp │ │ │ │ ├── Funcion Scanf.cpp │ │ │ │ ├── Funcion for.cpp │ │ │ │ ├── Funcion printf.cpp │ │ │ │ ├── PRUEBAS.cpp │ │ │ │ ├── Vectores.cpp │ │ │ │ └── Vectores1.cpp │ │ │ └── Nuevas practicas2 │ │ │ │ ├── Completa.cpp │ │ │ │ ├── Completa1.cpp │ │ │ │ ├── Contar espacios en blanco en una cadena.cpp │ │ │ │ ├── Doble repasando denuevo.cpp │ │ │ │ ├── Fahrenheit convertor. C#.cpp │ │ │ │ ├── Hola.txt │ │ │ │ ├── Manejo de archivos.cpp │ │ │ │ ├── Practica vectores compelta.cpp │ │ │ │ ├── Practica.cpp │ │ │ │ ├── Practica1.cpp │ │ │ │ ├── Repasando Denuevo.cpp │ │ │ │ ├── Uso de Rand.cpp │ │ │ │ └── Vectores practica.cpp │ │ └── juegos de consola │ │ │ ├── CARROS COLOR.bak │ │ │ ├── GATO.h │ │ │ ├── MAGIA.bak │ │ │ ├── bcwdef.csm │ │ │ ├── carros color.h │ │ │ ├── carros color.ilc │ │ │ ├── carros color.ild │ │ │ ├── carros color.ilf │ │ │ ├── carros color.ils │ │ │ ├── carros color.tds │ │ │ ├── carros.bak │ │ │ ├── carros.h │ │ │ ├── consola.bak │ │ │ ├── consola.cpp │ │ │ ├── consola.ilc │ │ │ ├── consola.ild │ │ │ ├── consola.ilf │ │ │ ├── consola.ils │ │ │ ├── consola.obj │ │ │ ├── consola.tds │ │ │ ├── magia.h │ │ │ ├── naves.bak │ │ │ ├── naves.h │ │ │ ├── numeros romanos.bak │ │ │ ├── numeros romanos.h │ │ │ ├── sudoku nuevo.bak │ │ │ ├── sudoku nuevo.h │ │ │ ├── vibora.bak │ │ │ └── vibora.h │ ├── CGI │ │ ├── hellow_p.pl │ │ ├── hellow_word.c │ │ ├── hellow_word.cgi │ │ └── simple.pl │ ├── COM │ │ ├── Acerca.txt │ │ ├── Exports.def │ │ ├── Makefile.win │ │ ├── comcli.c │ │ ├── comcli.dev │ │ ├── comclientc.rar │ │ ├── coms.h │ │ ├── comserverc.rar │ │ ├── cserver.dev │ │ └── main.c │ ├── Cheats │ │ ├── BCB5_WinInetIntro.zip │ │ ├── Injector Source │ │ │ ├── Includes.h │ │ │ ├── Injector.sln │ │ │ ├── Injector.vcproj │ │ │ ├── Vars.h │ │ │ └── main.cpp │ │ ├── Inyectar loadlibrary en el buscaminas.cpp │ │ ├── Inyector.cpp │ │ ├── KiTrap0D │ │ │ ├── ADVISORY │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── Thumbs.db │ │ │ ├── screenshot.png │ │ │ ├── vdmallowed.c │ │ │ └── vdmexploit.c │ │ ├── Modificando valor de tiempo en el bucaminas.cpp │ │ ├── Otro Inyector.cpp │ │ ├── Project1.dll │ │ ├── Trainer Busca Minas.cpp │ │ ├── Tutorial.rar │ │ ├── WallHack Simple CS │ │ │ ├── Makefile.win │ │ │ ├── Project1.dev │ │ │ ├── Project1.dll │ │ │ ├── Project1.layout │ │ │ ├── dll.h │ │ │ ├── dllmain.c │ │ │ ├── libProject1.a │ │ │ └── libProject1.def │ │ ├── WarRock Hacks No recoil - No spred.cpp │ │ ├── inyeccino por trampolin.cpp │ │ └── variables de enviroment en los programas.cpp │ ├── Dll │ │ ├── Basic Dll │ │ │ ├── Basic DLL C │ │ │ │ ├── Makefile.win │ │ │ │ ├── Project1.dev │ │ │ │ ├── Project1.dll │ │ │ │ ├── dll.h │ │ │ │ ├── dllmain.c │ │ │ │ ├── libProject1.a │ │ │ │ └── libProject1.def │ │ │ ├── Makefile.win │ │ │ ├── Project1.dll │ │ │ ├── Project3.dev │ │ │ ├── Project3.dll │ │ │ ├── dll.h │ │ │ ├── dllmain.cpp │ │ │ ├── libProject3.a │ │ │ ├── libProject3.def │ │ │ └── main.cpp │ │ ├── Busca minas │ │ │ ├── Buscaminas.dev │ │ │ ├── Buscaminas.dll │ │ │ ├── Buscaminas.layout │ │ │ ├── Makefile.win │ │ │ ├── dllmain.c │ │ │ ├── libBuscaminas.a │ │ │ └── libBuscaminas.def │ │ ├── DLLs con Dev-C++.pdf │ │ ├── Dll Inyeccion #1 │ │ │ ├── Inyector Source.cpp │ │ │ ├── Makefile.win │ │ │ ├── Project3.dev │ │ │ ├── Project3.dll │ │ │ ├── dll.h │ │ │ ├── dllmain.cpp │ │ │ ├── libProject3.a │ │ │ └── libProject3.def │ │ ├── Form In DLL.zip │ │ ├── Hook finder │ │ │ └── hook finder │ │ │ │ ├── hook finder.cbp │ │ │ │ ├── hook finder.layout │ │ │ │ ├── main.c │ │ │ │ └── main.h │ │ ├── Inyeccion por createthreth.cpp │ │ ├── Otras Dlls │ │ │ ├── 1 │ │ │ │ ├── Makefile.win │ │ │ │ ├── Output │ │ │ │ │ └── MingW │ │ │ │ │ │ ├── Project1.dll │ │ │ │ │ │ └── libProject1.a │ │ │ │ ├── Project1.dev │ │ │ │ ├── Project1.layout │ │ │ │ ├── dll.h │ │ │ │ └── dllmain.cpp │ │ │ ├── IMPUT practica │ │ │ │ ├── Makefile.win │ │ │ │ ├── Project1.dev │ │ │ │ ├── Project1.layout │ │ │ │ ├── dll.h │ │ │ │ └── dllmain.cpp │ │ │ ├── Inyección al notepad │ │ │ │ ├── Inyeccion .2 │ │ │ │ │ ├── Keys.h │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── Output │ │ │ │ │ │ └── MingW │ │ │ │ │ │ │ ├── Project1.dll │ │ │ │ │ │ │ └── libProject1.a │ │ │ │ │ ├── Project1.dev │ │ │ │ │ ├── Project1.layout │ │ │ │ │ ├── dll.h │ │ │ │ │ └── dllmain.cpp │ │ │ │ ├── Makefile.win │ │ │ │ ├── Project1.dev │ │ │ │ ├── Project1.layout │ │ │ │ ├── dll.h │ │ │ │ └── dllmain.cpp │ │ │ └── Mensaje al inyectarse │ │ │ │ ├── Makefile.win │ │ │ │ ├── Output │ │ │ │ └── MingW │ │ │ │ │ ├── Project1.dll │ │ │ │ │ └── libProject1.a │ │ │ │ ├── Project1.dev │ │ │ │ ├── Project1.layout │ │ │ │ ├── dll.h │ │ │ │ └── dllmain.cpp │ │ ├── Project1.dll │ │ ├── Reservar espacio en memoria.cpp │ │ ├── RootKi │ │ │ ├── Makefile.win │ │ │ ├── Project1.dev │ │ │ ├── Project1.dll │ │ │ ├── Project1.layout │ │ │ ├── dll.h │ │ │ ├── dllmain.c │ │ │ ├── libProject1.a │ │ │ └── libProject1.def │ │ ├── funcion para imprimir.cpp │ │ ├── inyeccion sin dll.cpp │ │ └── inyecciones.pdf │ ├── Drivers │ │ ├── Dev example │ │ │ ├── Project1.dev │ │ │ ├── Project1.ico │ │ │ ├── dll.h │ │ │ └── dllmain.c │ │ ├── Dispositivo │ │ │ └── dispositivo │ │ │ │ ├── cliente.c │ │ │ │ ├── dispositivo.cbp │ │ │ │ ├── dispositivo.depend │ │ │ │ ├── dispositivo.layout │ │ │ │ ├── dispositivo.sys │ │ │ │ └── driver.c │ │ ├── Entrada y salida │ │ │ └── IO │ │ │ │ ├── IO.cbp │ │ │ │ ├── IO.layout │ │ │ │ ├── IO.sys │ │ │ │ ├── cliente.c │ │ │ │ └── driver.c │ │ ├── Hola mundo │ │ │ └── holamundo │ │ │ │ ├── driver.c │ │ │ │ ├── holamundo.cbp │ │ │ │ ├── holamundo.depend │ │ │ │ ├── holamundo.layout │ │ │ │ └── holamundo.sys │ │ ├── HookOpenProcess │ │ │ ├── HookOpenProcess.cbp │ │ │ ├── HookOpenProcess.layout │ │ │ └── driver.c │ │ ├── IOCTL │ │ │ ├── IOCTL.cbp │ │ │ ├── IOCTL.layout │ │ │ ├── IOCTL.sys │ │ │ ├── cliente.c │ │ │ └── driver.c │ │ └── dkomdriver │ │ │ ├── dkomdriver.c │ │ │ ├── dkomdriver.sys │ │ │ ├── instdrv.c │ │ │ ├── instdrv.h │ │ │ ├── interface.h │ │ │ ├── makefile │ │ │ ├── ntifs.h │ │ │ └── sources │ ├── Hooks │ │ ├── CHook │ │ │ ├── cHook.cpp │ │ │ └── cHook.h │ │ ├── ClassHook │ │ │ ├── Acerca.txt │ │ │ ├── ClassHook.dev │ │ │ ├── ClassHook.dll │ │ │ ├── ClassName.c │ │ │ ├── ClassName.dev │ │ │ ├── ClassName.ico │ │ │ ├── Classhook.c │ │ │ ├── Classhook.h │ │ │ ├── HookServ_private.h │ │ │ ├── HookServ_private.rc │ │ │ ├── HookServ_private.res │ │ │ ├── Makefile.win │ │ │ └── classhook.rar │ │ ├── EAT hook.cpp │ │ ├── Hook CBT │ │ │ ├── Makefile.win │ │ │ ├── Project1.dev │ │ │ ├── Project1.dll │ │ │ ├── dll.h │ │ │ ├── dllmain.c │ │ │ ├── libProject1.a │ │ │ ├── libProject1.def │ │ │ └── main.c │ │ ├── HookMessageBoxEx │ │ │ ├── HookMessageBoxExA.dev │ │ │ ├── HookMessageBoxExA.dll │ │ │ ├── Makefile.win │ │ │ ├── dll.h │ │ │ ├── dllmain.c │ │ │ ├── libHookMessageBoxExA.a │ │ │ └── libHookMessageBoxExA.def │ │ ├── Import Hook BuscaMinas.cpp │ │ ├── Import Table Hook MessageBox.cpp │ │ ├── MesageBoxE.cpp │ │ ├── SetWindowsHook al teclado.cpp │ │ └── VEH hook │ │ │ └── BloodVeh │ │ │ ├── BloodVEH.a │ │ │ ├── BloodVEH.c │ │ │ ├── BloodVEH.dev │ │ │ ├── BloodVEH.h │ │ │ ├── Makefile.win │ │ │ ├── main.c │ │ │ ├── main.cpp │ │ │ └── main.dev │ ├── Notas importantes │ │ ├── Archivo de configuracion cisco.txt │ │ ├── D3D Hacks.txt │ │ ├── Documentación de funciones manejo de memoría.txt │ │ ├── Funciones ASM.tex │ │ ├── Función para FB.txt │ │ ├── Más parametros para funciones.txt │ │ ├── SF players rec.txt │ │ ├── WinMain definida.txt │ │ ├── epic copy win.txt │ │ ├── fail hard.txt │ │ ├── packet tracker cof.txt │ │ ├── pendiente.txt │ │ ├── respuesta2.txt │ │ ├── respuestas.txt │ │ └── respuestas1.txt │ ├── OverFlow │ │ ├── Shellcode basica asm.cpp │ │ ├── exploit shellcode C.c │ │ ├── vuln exp.pl │ │ ├── vuln1.c │ │ └── vuln2.c │ ├── Pruebas │ │ ├── 1.cpp │ │ ├── 10.c │ │ ├── 1003.cpp │ │ ├── 1023.cpp │ │ ├── 11.cpp │ │ ├── 1123.cpp │ │ ├── 1355.cpp │ │ ├── 18.cpp │ │ ├── 1842.cpp │ │ ├── 19.c │ │ ├── 19.cpp │ │ ├── 2.cpp │ │ ├── 20.c │ │ ├── 20.cpp │ │ ├── 21.cpp │ │ ├── 22.c │ │ ├── 23.cpp │ │ ├── 24.cpp │ │ ├── 25.cpp │ │ ├── 26.cpp │ │ ├── 27.cpp │ │ ├── 28.cpp │ │ ├── 29.cpp │ │ ├── 3.cpp │ │ ├── 30.cpp │ │ ├── 4.cpp │ │ ├── 5.cpp │ │ ├── 6.cpp │ │ ├── 8.cpp │ │ ├── 9.c │ │ ├── Base ejecutables │ │ │ ├── Untitled1.c │ │ │ ├── Untitled1.cpp │ │ │ ├── bla.cpp │ │ │ ├── h.c │ │ │ └── nose.c │ │ ├── GUI Tipica │ │ │ ├── Makefile.win │ │ │ ├── Project2.dev │ │ │ └── main.cpp │ │ ├── Try │ │ │ └── trys │ │ │ │ ├── ac_time.h │ │ │ │ ├── collatz.c │ │ │ │ ├── combinatory.c │ │ │ │ ├── euler_19.cpp │ │ │ │ ├── factorial_100.cpp │ │ │ │ ├── grid_euler.c │ │ │ │ ├── inner_product.c │ │ │ │ ├── main.cpp │ │ │ │ ├── maximo_comn_divisor.c │ │ │ │ ├── meh.txt │ │ │ │ ├── minimo_comun_multiplo.c │ │ │ │ ├── names.txt │ │ │ │ ├── num.txt │ │ │ │ ├── project_euler_18 │ │ │ │ ├── project_euler_18.c │ │ │ │ ├── triang.txt │ │ │ │ ├── trys.cbp │ │ │ │ ├── trys.depend │ │ │ │ └── trys.layout │ │ ├── aereop.cpp │ │ ├── bajito.c │ │ ├── bla.cpp │ │ ├── c │ │ │ ├── bignum.c │ │ │ ├── bin.c │ │ │ ├── capicua.cpp │ │ │ ├── div_4.cpp │ │ │ ├── div_6.cpp │ │ │ ├── general_election.c │ │ │ ├── general_election.cpp │ │ │ ├── goldbach_conjeture.cpp │ │ │ ├── hellow.cpp │ │ │ ├── last_digit.cpp │ │ │ ├── pitagoriyh_triple.cpp │ │ │ ├── prueba │ │ │ │ ├── 1.cpp │ │ │ │ ├── 10.cpp │ │ │ │ ├── 2.c │ │ │ │ ├── 3.cpp │ │ │ │ ├── 4.cpp │ │ │ │ ├── 5.cpp │ │ │ │ ├── 6.c │ │ │ │ ├── 6.cpp │ │ │ │ ├── 7.c │ │ │ │ ├── 8.c │ │ │ │ ├── 9.cpp │ │ │ │ ├── blabal.cpp │ │ │ │ ├── blabal2.cpp │ │ │ │ ├── gold_pr.cpp │ │ │ │ ├── nuevo.cpp │ │ │ │ ├── num_lock.c │ │ │ │ ├── num_trig.cpp │ │ │ │ ├── old.txt │ │ │ │ ├── pedernales.cpp │ │ │ │ ├── practicas │ │ │ │ │ └── 1.cpp │ │ │ │ ├── test.txt │ │ │ │ └── type.cpp │ │ │ ├── pucmm210.cpp │ │ │ ├── sum.c │ │ │ ├── sum_2.cpp │ │ │ └── trasversing_grid.cpp │ │ ├── catorce.c │ │ ├── catorce.cpp │ │ ├── colas_vector.cpp │ │ ├── comp_resolution.cpp │ │ ├── diez.cpp │ │ ├── div_5.cpp │ │ ├── doce.cpp │ │ ├── geometry_task.cpp │ │ ├── integer messebox.cpp │ │ ├── iso100 │ │ │ ├── 3.12.cpp │ │ │ ├── 3.13.cpp │ │ │ ├── 3.14.cpp │ │ │ ├── 3.15.cpp │ │ │ ├── 3.16.cpp │ │ │ ├── 3.17.cpp │ │ │ ├── 3.18.cpp │ │ │ ├── 3.19.cpp │ │ │ ├── 3.20.cpp │ │ │ ├── 3.21.cpp │ │ │ ├── 3.22.cpp │ │ │ ├── 3.23.cpp │ │ │ ├── 3.24.cpp │ │ │ ├── 3.25.cpp │ │ │ ├── 3.26.cpp │ │ │ └── numeros.txt │ │ ├── librerias │ │ │ ├── Makefile.win │ │ │ ├── libjoto.c │ │ │ ├── libjoto.dev │ │ │ └── libjoto.h │ │ ├── lista.c │ │ ├── live_universe.cpp │ │ ├── meh.c │ │ ├── nueve.cpp │ │ ├── priority_quee.cpp │ │ ├── project_euler_17.c │ │ ├── quee.cpp │ │ ├── quince.cpp │ │ ├── sieete.cpp │ │ ├── space_e.c │ │ ├── space_em.c │ │ ├── sucesiones.cpp │ │ ├── three_coins.cpp │ │ ├── three_coins_e.cpp │ │ ├── trece.cpp │ │ └── weblib.h │ ├── Receteo de IP.bat │ ├── Socket │ │ ├── Cliente.cpp │ │ ├── Cual Es mi IP │ │ │ └── CualEsMiIP.zip │ │ ├── Servidor.cpp │ │ └── tuto_winsock.pdf │ └── WinAPI book │ │ ├── GraphicWinBeta_0.1 Source Code.zip │ │ ├── Notepad(by jackerst and myguestp).rar │ │ ├── ProgWin5.zip │ │ ├── Programming_Windows_with_MFC_2E_ByRevenge_CW.rar │ │ ├── readme.txt │ │ ├── win004.zip │ │ ├── win005.zip │ │ ├── win009.zip │ │ ├── win010.zip │ │ ├── win011.zip │ │ ├── win012.zip │ │ ├── win013.zip │ │ ├── win014.zip │ │ ├── win015.zip │ │ ├── win016.zip │ │ ├── win017.zip │ │ ├── win018.zip │ │ ├── win019.zip │ │ ├── win020.zip │ │ ├── win021.zip │ │ ├── win022.zip │ │ ├── win023.zip │ │ ├── win024.zip │ │ ├── win025.zip │ │ ├── win076.zip │ │ └── winapi5.zip ├── Crackme │ ├── Crackme.cpp │ ├── Dll prueba.cpp │ └── Keygen.cpp ├── Directx │ ├── 1 │ │ ├── Nave │ │ │ ├── Makefile.win │ │ │ ├── Output │ │ │ │ └── MingW │ │ │ │ │ ├── Proyecto 1.rar │ │ │ │ │ └── source.txt │ │ │ ├── Project1.dev │ │ │ ├── Project1.layout │ │ │ ├── d3d9.h │ │ │ ├── d3d9.lib │ │ │ ├── d3d9caps.h │ │ │ ├── d3d9types.h │ │ │ ├── libd3d9.a │ │ │ └── main.cpp │ │ ├── OpenGL │ │ │ ├── Makefile.win │ │ │ ├── Project1.dev │ │ │ ├── Project1.layout │ │ │ └── main.cpp │ │ ├── Proyecto GDI Paint │ │ │ ├── Makefile.win │ │ │ ├── Project1.dev │ │ │ ├── Project1.layout │ │ │ └── main.cpp │ │ └── Soldier Front KIll hack │ │ │ ├── Main.cpp │ │ │ ├── Makefile.win │ │ │ ├── Project1.dev │ │ │ ├── Project1.layout │ │ │ ├── Soldierfront.h │ │ │ ├── d3dfont8.cpp │ │ │ ├── d3dfont8.h │ │ │ ├── dll.h │ │ │ ├── menu2.cpp │ │ │ ├── menu2.h │ │ │ └── stdafx.h │ ├── Button Menu Source v2.5 │ │ ├── ADE32.cpp │ │ ├── ADE32.h │ │ ├── CDetour.cpp │ │ ├── CDetour.h │ │ ├── Evo2.cpp │ │ ├── Evo2.h │ │ ├── Release │ │ │ ├── fonts │ │ │ │ └── visitor2.ttf │ │ │ └── settings │ │ │ │ └── inj_settings.ini │ │ ├── d3d9_screenshot.ncb │ │ ├── d3d9_screenshot.sln │ │ ├── d3d9_screenshot.suo │ │ ├── d3d9_screenshot.vcproj │ │ ├── d3d9dev.cpp │ │ ├── d3d9dev.h │ │ ├── d3d9hook.aps │ │ ├── d3d9hook.cpp │ │ ├── d3d9hook.rc │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── D3D_Starterkit_v3.0b │ │ ├── D3D8 │ │ │ ├── TatniumD3D.sln │ │ │ ├── TatniumD3D.suo │ │ │ ├── TatniumD3D.vcproj │ │ │ ├── d3d8.cpp │ │ │ ├── d3d8.h │ │ │ ├── d3d8dev.cpp │ │ │ ├── d3d8dev.h │ │ │ ├── d3d8int.cpp │ │ │ ├── d3d8int.h │ │ │ ├── d3d8tex.cpp │ │ │ ├── d3d8tex.h │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ └── old_workspace │ │ │ │ ├── TatniumD3D.dsp │ │ │ │ └── TatniumD3D.dsw │ │ ├── D3D9 │ │ │ ├── TatniumD3D.sln │ │ │ ├── TatniumD3D.suo │ │ │ ├── TatniumD3D.vcproj │ │ │ ├── d3d9.cpp │ │ │ ├── d3d9.h │ │ │ ├── d3d9dev.cpp │ │ │ ├── d3d9dev.h │ │ │ ├── d3d9int.cpp │ │ │ ├── d3d9int.h │ │ │ ├── d3d9tex.cpp │ │ │ ├── d3d9tex.h │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ └── old_workspace │ │ │ │ ├── TatniumD3D.dsp │ │ │ │ └── TatniumD3D.dsw │ │ ├── Injector │ │ │ ├── TatniumInjector.ncb │ │ │ ├── TatniumInjector.sln │ │ │ ├── TatniumInjector.suo │ │ │ ├── TatniumInjector.vcproj │ │ │ ├── TatniumLoader.ico │ │ │ ├── forcelib │ │ │ │ ├── ForceLib.h │ │ │ │ ├── ForceLibrary.cpp │ │ │ │ ├── TH32.cpp │ │ │ │ └── TH32.h │ │ │ ├── main.cpp │ │ │ ├── old_workspace │ │ │ │ ├── TatniumInjector.dsp │ │ │ │ └── TatniumInjector.dsw │ │ │ ├── resource.aps │ │ │ ├── resource.h │ │ │ └── resource.rc │ │ ├── ReadMe.rtf │ │ └── Wrapper │ │ │ ├── D3D8 │ │ │ ├── d3d8.def │ │ │ └── main.cpp │ │ │ └── D3D9 │ │ │ ├── d3d9.def │ │ │ └── main.cpp │ ├── D3Dbase │ │ ├── D3Dbase.zip │ │ ├── Release │ │ │ ├── D3D8_inject.ini │ │ │ ├── D3D9_inject.ini │ │ │ ├── D3Dbase8.dll │ │ │ └── D3Dbase9.dll │ │ ├── d3dbase.cpp │ │ ├── d3dbase.h │ │ ├── d3dfont8.cpp │ │ ├── d3dfont8.h │ │ ├── d3dfont9.cpp │ │ ├── d3dfont9.h │ │ ├── d3dmenu.cpp │ │ ├── d3dmenu.h │ │ └── hackbase.cpp │ ├── DirectX │ │ ├── Demo de animacion │ │ │ ├── AnimatedSprites.opt │ │ │ ├── AnimatedSprites.sln │ │ │ ├── AnimatedSprites.vcproj │ │ │ ├── BBThumbs.dat │ │ │ ├── CgpIcon3232.ico │ │ │ ├── Makefile.win │ │ │ ├── Objects │ │ │ │ └── MingW │ │ │ │ │ ├── Project1_private.h │ │ │ │ │ ├── Project1_private.rc │ │ │ │ │ └── Project1_private.res │ │ │ ├── Project1.dev │ │ │ ├── Project1.layout │ │ │ ├── Sample1.aps │ │ │ ├── Sample1.rc │ │ │ ├── background.dds │ │ │ ├── cavemen.tga │ │ │ ├── cgpicon1616.ico │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ ├── rejilla.jpg │ │ │ └── resource.h │ │ ├── Entorno.cpp │ │ ├── Estructura de la ventana.cpp │ │ ├── Proyecto │ │ │ ├── Design.h │ │ │ ├── Loads.h │ │ │ ├── Makefile.win │ │ │ ├── Project1.dev │ │ │ ├── Project1.layout │ │ │ ├── images.h │ │ │ └── main.cpp │ │ └── Triangulo.cpp │ ├── Estructura Directx │ │ ├── Makefile.win │ │ ├── Project1.dev │ │ ├── Project1.layout │ │ └── main.cpp │ ├── MenuTestApp.rar │ ├── MenuTestApp │ │ ├── MenuTestApp.sln │ │ ├── MenuTestApp.suo │ │ └── MenuTestApp │ │ │ ├── Dev proyecto │ │ │ ├── Makefile.win │ │ │ ├── Menu Aplicación D3D.dev │ │ │ └── Menu Aplicación D3D.layout │ │ │ ├── Drawing.cpp │ │ │ ├── Drawing.h │ │ │ ├── Main.cpp │ │ │ ├── Main.h │ │ │ ├── MenuTestApp.vcproj │ │ │ ├── cMenu.cpp │ │ │ ├── cMenu.h │ │ │ ├── cRender.cpp │ │ │ ├── cRender.h │ │ │ └── cVars.h │ ├── Sf │ │ ├── OMFGZ Infinite Dll Injector.rar │ │ ├── SFWall │ │ │ ├── Menu2.cpp │ │ │ ├── Read me.txt │ │ │ ├── d3dfont8.cpp │ │ │ ├── d3dfont8.h │ │ │ ├── main.cpp │ │ │ ├── menu2.h │ │ │ ├── soldierfront.h │ │ │ └── stdafx.h │ │ ├── Valkyrie.ini │ │ ├── log.txt │ │ └── soldierfront_dumped.rar │ └── WinGDIDemoSLN │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── WinDemo.cpp │ │ ├── WinDemo.dsp │ │ ├── WinDemo.h │ │ ├── WinDemo.ico │ │ ├── WinDemo.rc │ │ ├── WinDemo.sln │ │ ├── WinDemo.suo │ │ ├── WinDemo.vcproj │ │ ├── resource.h │ │ └── small.ico ├── Estructura de datos │ ├── Graphs │ │ └── graph_meh │ │ │ ├── graph_meh.cbp │ │ │ ├── graph_meh.depend │ │ │ └── main.cpp │ ├── arbolabb-c.zip │ ├── arbolabb-cpp.zip │ ├── arbolavl-c.zip │ ├── arbolavl-cpp.zip │ ├── circular_c.zip │ ├── cola_cpp.zip │ ├── cursocpp2.zip │ ├── lista_c.zip │ ├── lista_cconclase.c │ ├── lista_cpp.zip │ ├── lista_enlazada.c │ ├── lista_templ.zip │ ├── pila_c.zip │ ├── pila_cpp.zip │ └── pila_templ.zip ├── Programas (old) │ ├── Abrir, Cerrar cdroom.cpp │ ├── Activar Protector de Pantalla.cpp │ ├── Apagar monitor.cpp │ ├── Apagar windows.cpp │ ├── Barra de cargar miguest.cpp │ ├── Barra de progreso.cpp │ ├── Bloquear el teclado y el mouse.cpp │ ├── Broma de errores.cpp │ ├── Buscar archivo en el directorio actual.cpp │ ├── Calculadora basica con funciones y argumentos.cpp │ ├── Calculadora de promedio.cpp │ ├── Calculadora en C++.cpp │ ├── Calculadora orientada a objetos.cpp │ ├── Calculo de figuras.cpp │ ├── Calendario.cpp │ ├── Cambia el nombre de muchos archivos a la vez.cpp │ ├── Cambiar el Wallpaper.cpp │ ├── Cambiar el nombre a la barra de inicio.cpp │ ├── Cambiar nombre a la ventana.cpp │ ├── Cerrar ventana externa.cpp │ ├── Cheat para el Cs 1.6.cpp │ ├── Codificador ansi.cpp │ ├── Copiar archivos funcion de windows.cpp │ ├── Cruel Spamming.cpp │ ├── Deshabilitar barra de tareas.cpp │ ├── Deshabilitar boton de inicio.cpp │ ├── Detectar cuando se conecta una usb en tiempo real.cpp │ ├── Efecto Matrix.cpp │ ├── Ejecutar aplicaciones externas.cpp │ ├── Fecha y hora c++.cpp │ ├── GameBase.cpp │ ├── Ice Cold Reload.cpp │ ├── Imprir tickets y facturas fiscales.cpp │ ├── Juego Tres Rayas.cpp │ ├── Juegoe del Ahorcado.cpp │ ├── Keylogger.cpp │ ├── Limpia Pantalla.cpp │ ├── Mallware Alterna leds.cpp │ ├── Maquina de escribir.cpp │ ├── Mascota Virtual.cpp │ ├── Mi primera calculadora.cpp │ ├── Mini Consola.cpp │ ├── MiniTaskmanager.cpp │ ├── Mostrar o Ocultar iconos en el escritorio.cpp │ ├── Mover el mouse, mover teclado.cpp │ ├── O mata 0 avoid.cpp │ ├── Obtener Codigo de Fuente de una pagina.cpp │ ├── Obtener Resolución de pantalla.cpp │ ├── Obtener nombre de usuario.cpp │ ├── Ocultar barra de inicio.cpp │ ├── Precionar el space bucle.cpp │ ├── Pruebas.cpp │ ├── Recorrer los pixeles de la pantalla.cpp │ ├── Renombrar un archivo.cpp │ ├── ScreenShot.cpp │ ├── Semi Calculadora BY BlackHole.cpp │ ├── Syn Flood.cpp │ ├── Tateti V2.cpp │ ├── TocaPelotas.cpp │ ├── Vart.cpp │ ├── Ventanas trasnparentes.cpp │ ├── Ver el nombre de la tarjeta grafia.cpp │ ├── Ver si el numero es par o impar.cpp │ ├── enviar datos a otra app.cpp │ ├── keyloger2.cpp │ └── sumar digistos de un mismo numero.cpp ├── Programas │ ├── Agenda.cpp │ ├── Buscar offset de una funcion.cpp │ ├── Cadena aleatoria.cpp │ ├── Challengue 3 ubuntuforums.cpp │ ├── Cobro.c │ ├── Codificador GUI.cpp │ ├── Concurso cph [----].cpp │ ├── Copiar archivos desde consola.cpp │ ├── Copiar archivos desde otra unidad.cpp │ ├── Crear una seccion en un ejecutable.cpp │ ├── Detectar Unidades.cpp │ ├── Encuentra la letra.cpp │ ├── Eprocess.cpp │ ├── Escribe y guarda, consola,archivo.cpp │ ├── Escribir por consola con las API.cpp │ ├── Explode string.cpp │ ├── Factorizacion de numeros primos expresados en potencia.cpp │ ├── Full screem comsole.cpp │ ├── Inyeccion de Codigo.cpp │ ├── Juego vivora winapi.cpp │ ├── Libreria string [Imconpleta].cpp │ ├── Lilstar Directorios libreria.cpp │ ├── Listar Directorios.cpp │ ├── Listar procesos con Thelper.cpp │ ├── Listar procesos.cpp │ ├── MessageBox hook.c │ ├── Modificar el flujo de entrada.cpp │ ├── Notas musicasles.cpp │ ├── PrintScreen.cpp │ ├── Resolver una IP.cpp │ ├── Sobrecarga de operadores (menor mayor).cpp │ ├── The Biggest Loser.cpp │ ├── agenda_c.c │ ├── ajedres.cpp │ ├── ajustar fecha y hora.cpp │ ├── archvio_o_directorio.c │ ├── assert example.cpp │ ├── autovisitador pag.cpp │ ├── beep [cancino navidenya].cpp │ ├── bhaarat.txt │ ├── borrar un archivo c.cpp │ ├── buscar bytes en la memoria virtual.cpp │ ├── c++ practicas.cpp │ ├── calcular el tiempo de ejecucion de un programa.cpp │ ├── cifrado garbo.cpp │ ├── clave por consola.cpp │ ├── codificado.txt │ ├── codificador de archivos.cpp │ ├── colas.cpp │ ├── credenciales msn.c │ ├── decimal a binario.cpp │ ├── decodificar.txt │ ├── decoradores.cpp │ ├── devolver mas return.c │ ├── dibujar polinomios.cpp │ ├── dropper.cpp │ ├── dumper.cpp │ ├── ecuacion.cpp │ ├── efecto matriz.cpp │ ├── ejemplo challengue 2.cpp │ ├── ejemplo de shell.cpp │ ├── enviar mail c++ (old).cpp │ ├── exceptions_class.cpp │ ├── factorial.c │ ├── ficheros aleatorios.cpp │ ├── file.cpp │ ├── getpass.cpp │ ├── h.c │ ├── ip resolver c.c │ ├── libro.txt │ ├── llamar a una api desde una dll.cpp │ ├── mencopy.c │ ├── meses.dat │ ├── notas musicales c++.cpp │ ├── numero mayor de un arreglo.cpp │ ├── numero repetido en un arrey.cpp │ ├── object semaphore.c │ ├── obtener tamano de un archivo.cpp │ ├── obtener valor de un registro.cpp │ ├── piramide.cpp │ ├── polimorfismo virtual.cpp │ ├── prender el nun lock.cpp │ ├── problema #1.cpp │ ├── problema #2.cpp │ ├── problema 1 project.cpp │ ├── prueba.cpp │ ├── puntero de arrey a funciones.cpp │ ├── reto extraer numeros.c │ ├── space console.cpp │ ├── strstr ejemplo.cpp │ ├── subir y bajar archivos ftp.cpp │ ├── submet.c │ ├── sucesion fibonacci.cpp │ ├── sucesiones.cpp │ ├── sudoku.cpp │ ├── synflood.c │ ├── tablas de verdad de propociciones logicas.cpp │ ├── tamano de un archivo c.cpp │ ├── tercer parametro del main.cpp │ ├── thearths api.c │ ├── thearths.cpp │ ├── uso de curl.cpp │ ├── uso de getch.cpp │ └── void piano notas.cpp ├── Proyectos │ ├── Dropper │ │ ├── Makefile.win │ │ ├── Project1.dev │ │ ├── Project1.layout │ │ ├── Project1_private.h │ │ ├── Project1_private.rc │ │ ├── Project1_private.res │ │ ├── dropper_recursos.rc │ │ ├── ej.cpp │ │ └── main.cpp │ ├── FTP Downloader │ │ ├── Makefile.win │ │ ├── Project1.dev │ │ ├── Project1.layout │ │ ├── local.txt │ │ └── main.cpp │ ├── FTP KeyLogger │ │ ├── Makefile.win │ │ ├── Project3.dev │ │ └── main.cpp │ ├── Gestor de archivos │ │ ├── Makefile.win │ │ ├── Project1.dev │ │ └── main.cpp │ ├── Inyector │ │ ├── Inyector DLL.dev │ │ ├── Inyector DLL.layout │ │ ├── Makefile.win │ │ └── main.cpp │ ├── Listar Procesos │ │ ├── Makefile.win │ │ ├── Project1.dev │ │ └── main.cpp │ ├── SynFlood │ │ ├── Makefile.win │ │ ├── Project1.dev │ │ ├── Project1.layout │ │ └── main.cpp │ ├── Unidades Detectadas │ │ ├── Makefile.win │ │ ├── Project1.dev │ │ ├── Project1.layout │ │ └── main.cpp │ ├── Url release │ │ ├── Makefile.win │ │ ├── Project2.dev │ │ └── main.cpp │ ├── Windows finder │ │ ├── Makefile.win │ │ ├── Project1.dev │ │ └── main.cpp │ └── asin_network │ │ ├── asin_network.cbp │ │ ├── asin_network.depend │ │ ├── asin_network.layout │ │ ├── bin │ │ └── Debug │ │ │ ├── proof2.JPG │ │ │ └── user.txt │ │ ├── include │ │ ├── client.h │ │ ├── parent.h │ │ └── server.h │ │ ├── main.cpp │ │ ├── src │ │ ├── client.cpp │ │ ├── parent.cpp │ │ └── server.cpp │ │ └── user.txt ├── SDL │ ├── Colision de plataformas │ │ ├── col_map_ compilado │ │ │ ├── LEEME_colmap.txt │ │ │ ├── README-SDL.txt │ │ │ ├── SDL.dll │ │ │ ├── doc │ │ │ │ └── Doxyfile │ │ │ ├── ima │ │ │ │ ├── Thumbs.db │ │ │ │ ├── tiles.bmp │ │ │ │ └── tortuga.bmp │ │ │ ├── nivel │ │ │ │ └── tiles.dat │ │ │ └── salida_estandar.txt │ │ ├── colmap.tar.gz │ │ ├── colmap.zip │ │ └── colmap │ │ │ ├── COPYING │ │ │ ├── COPYING_ESP │ │ │ ├── Makefile │ │ │ ├── doc │ │ │ └── Doxyfile │ │ │ ├── ima │ │ │ ├── Thumbs.db │ │ │ ├── tiles.bmp │ │ │ └── tortuga.bmp │ │ │ ├── juego.cpp │ │ │ ├── juego.h │ │ │ ├── main.cpp │ │ │ ├── nivel.cpp │ │ │ ├── nivel.h │ │ │ ├── nivel │ │ │ └── tiles.dat │ │ │ ├── readme.doxy │ │ │ ├── tortuga.cpp │ │ │ └── tortuga.h │ ├── Librerias │ │ ├── SDL_dev │ │ │ └── SDL-devel-1.2.14-mingw32.tar.gz │ │ ├── SDL_run │ │ │ ├── README-SDL.txt │ │ │ ├── SDL-1.2.14-win32.zip │ │ │ └── SDL.dll │ │ ├── sdl_image │ │ │ ├── README.txt │ │ │ ├── SDL_image-1.2.10-win32.zip │ │ │ ├── SDL_image-1.2.10 │ │ │ │ ├── CHANGES │ │ │ │ ├── COPYING │ │ │ │ ├── README │ │ │ │ ├── include │ │ │ │ │ └── SDL_image.h │ │ │ │ └── lib │ │ │ │ │ ├── SDL_image.dll │ │ │ │ │ ├── jpeg.dll │ │ │ │ │ ├── libpng12-0.dll │ │ │ │ │ ├── libtiff-3.dll │ │ │ │ │ └── zlib1.dll │ │ │ ├── SDL_image-devel-1.2.10-VC.zip │ │ │ ├── SDL_image.dll │ │ │ ├── jpeg62.dll │ │ │ ├── libpng12-0.dll │ │ │ ├── libtiff-3.dll │ │ │ └── zlib1.dll │ │ └── sdl_mixer │ │ │ ├── SDL_mixer-1.2.11-win32.zip │ │ │ ├── SDL_mixer-1.2.11 │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── include │ │ │ │ └── SDL_mixer.h │ │ │ └── lib │ │ │ │ ├── SDL_mixer.dll │ │ │ │ ├── SDL_mixer.lib │ │ │ │ ├── libogg-0.dll │ │ │ │ ├── libvorbis-0.dll │ │ │ │ ├── libvorbisfile-3.dll │ │ │ │ ├── mikmod.dll │ │ │ │ └── smpeg.dll │ │ │ └── SDL_mixer-devel-1.2.11-VC.zip │ ├── Miguestg ejemplos │ │ ├── Mover flechas por toda la pantalla.cpp │ │ ├── Rellenar pantalla.cpp │ │ ├── Rellenar pantalla2.cpp │ │ ├── matriz.bmp │ │ └── stdout.txt │ ├── Programación de Videojuegos con SDL │ │ ├── Facility-War3z!.url │ │ ├── Facility-War3z.BlogSpot.Com Programación de Videojuegos con SDL.rar │ │ ├── Fondo.jpg │ │ ├── Importante, Leer!.txt │ │ ├── MS® │ │ ├── Programación de Videojuegos con SDL.pdf │ │ ├── Thumbs.db │ │ └── desktop.ini │ ├── Programas │ │ ├── Flechas myguestp │ │ │ ├── Thumbs.db │ │ │ ├── flechas.cpp │ │ │ ├── mariano.bmp │ │ │ ├── mariano.jpg │ │ │ ├── matriz.bmp │ │ │ └── matriz.jpg │ │ ├── Fondo.jpg │ │ ├── Grilla animada │ │ │ ├── KyubiNaruto.png │ │ │ ├── Makefile.win │ │ │ ├── Project4.dev │ │ │ ├── Santa Clos │ │ │ │ ├── anima_grilla edit │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── anima_grilla.c │ │ │ │ │ ├── ima.bmp │ │ │ │ │ └── stdout.txt │ │ │ │ ├── anima_grilla.tar.gz │ │ │ │ └── anima_grilla │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── anima_grilla.c │ │ │ │ │ └── ima.bmp │ │ │ ├── automatas │ │ │ │ ├── automatas,ej │ │ │ │ │ ├── AUTHORS.txt │ │ │ │ │ ├── COPYING.txt │ │ │ │ │ ├── COPYING_ES.txt │ │ │ │ │ ├── Documentación.txt │ │ │ │ │ ├── Doxyfile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.win │ │ │ │ │ ├── SDL.dll │ │ │ │ │ ├── ima.bmp │ │ │ │ │ ├── main.c │ │ │ │ │ └── personaje animacion.dev │ │ │ │ ├── automatas.tar.gz │ │ │ │ ├── automatas.zip │ │ │ │ └── automatas │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── COPYING_ES │ │ │ │ │ ├── Doxyfile │ │ │ │ │ ├── KyubiNaruto.png │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── actor.c │ │ │ │ │ ├── actor.h │ │ │ │ │ ├── ima.bmp │ │ │ │ │ ├── main.c │ │ │ │ │ ├── rejilla.bmp │ │ │ │ │ ├── util.c │ │ │ │ │ └── util.h │ │ │ ├── laFirma.bmp │ │ │ ├── laFirma.jpg │ │ │ ├── main.c │ │ │ ├── rejilla.bmp │ │ │ └── rejilla.jpg │ │ ├── Juego │ │ │ ├── Ejemplos │ │ │ │ └── LIBRO_MAS_CODIGO_FUENTE_EJEMPLOS.rar │ │ │ ├── Juego.dev │ │ │ ├── Makefile.win │ │ │ ├── Thumbs.db │ │ │ ├── balas.bmp │ │ │ ├── coliciones.cpp │ │ │ ├── csprite.cpp │ │ │ ├── csprite.h │ │ │ ├── explode1.bmp │ │ │ ├── explode2.bmp │ │ │ ├── explode3.bmp │ │ │ ├── explode4.bmp │ │ │ ├── explode5.bmp │ │ │ ├── explode6.bmp │ │ │ ├── explode7.bmp │ │ │ ├── mapa1.bmp │ │ │ ├── mapa2.bmp │ │ │ ├── mapa3.bmp │ │ │ ├── nave1 NEGRA.bmp │ │ │ ├── nave1.bmp │ │ │ ├── nave2 NEGRA.bmp │ │ │ └── nave2.bmp │ │ ├── Mansion del terror.cpp │ │ ├── Mi Pokemon.rar │ │ ├── Mi Pokemon │ │ │ ├── Clases.cpp │ │ │ ├── ListaMapas.h │ │ │ ├── Makefile.win │ │ │ ├── Project1.dev │ │ │ ├── Tiles.BMP │ │ │ ├── Tiles.cbp │ │ │ ├── Tiles.depend │ │ │ ├── Tiles.layout │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ └── Tiles.BMP │ │ │ ├── main.cpp │ │ │ └── oldregion2mr1.png │ │ ├── POO teclado.cpp │ │ ├── Proyecto coliciones │ │ │ ├── Colicion.dev │ │ │ ├── Makefile.win │ │ │ ├── coliciones.cpp │ │ │ ├── csprite.cpp │ │ │ ├── csprite.h │ │ │ ├── ima.bmp │ │ │ └── ima.png │ │ ├── SDL game │ │ │ ├── Casa1.bmp │ │ │ ├── M1.bmp │ │ │ ├── P1.bmp │ │ │ ├── SDL game.rar │ │ │ ├── Thumbs.db │ │ │ ├── main.cpp │ │ │ └── minave.bmp │ │ ├── Semaforo.cpp │ │ ├── Teclas │ │ │ ├── teclas.tar.gz │ │ │ └── teclas │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── README │ │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── main.c │ │ │ │ └── stdout.txt │ │ ├── TickTockCarRace │ │ │ └── TickTockCarRace.zip │ │ ├── Ubicar las coordenadas.cpp │ │ ├── background color change.cpp │ │ ├── blabla.cpp │ │ ├── formato.cpp │ │ ├── icono.ico │ │ ├── ima.bmp │ │ ├── ima.png │ │ ├── juego vibora.cpp │ │ ├── libreria de fuentes sdl.cpp │ │ ├── libreria mixer 2 sdl.cpp │ │ ├── libreria mixer sdl.cpp │ │ ├── nave.bmp │ │ ├── prueba 2.cpp │ │ ├── prueba1.cpp │ │ ├── rejilla.jpg │ │ └── sonidos .wav en sdl.cpp │ ├── Tutoriales │ │ ├── reemplaza_color.tar.gz │ │ ├── reemplaza_color │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── data │ │ │ │ ├── Thumbs.db │ │ │ │ └── imagen.png │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ └── reemplaza_color.c │ │ ├── sdl-n2.pdf │ │ ├── teclas.tar.gz │ │ ├── teclas │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── README │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ └── main.c │ │ ├── texto_flotante.tar.gz │ │ ├── texto_flotante │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── ima │ │ │ │ ├── Thumbs.db │ │ │ │ └── fuente_iso_8859_1.png │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ └── texto_flotante.c │ │ └── tutorial_sdl.pdf │ └── materia_tutorial │ │ └── material_tutorial.tar.gz ├── STL │ ├── assert.cpp │ ├── iterators.cpp │ ├── list.cpp │ ├── map.cpp │ ├── pair.cpp │ └── set.cpp ├── Winbgim │ └── Grafica lineal.cpp └── boost │ ├── 05_Boost_Echo_Client │ ├── bin │ │ └── echoExample │ ├── echoClient │ │ ├── connectionHandler.cpp │ │ ├── connectionHandler.h │ │ └── echoClient.cpp │ ├── encoder │ │ ├── encoder.cpp │ │ ├── encoder.h │ │ ├── utf8.h │ │ └── utf8 │ │ │ ├── checked.h │ │ │ ├── core.h │ │ │ └── unchecked.h │ └── makefile │ ├── 05_Poco_Echo_Client │ ├── echoClient │ │ ├── connectionHandler.cpp │ │ ├── connectionHandler.h │ │ └── echoClient.cpp │ ├── encoder │ │ ├── encoder.cpp │ │ ├── encoder.h │ │ ├── utf8.h │ │ └── utf8 │ │ │ ├── checked.h │ │ │ ├── core.h │ │ │ └── unchecked.h │ └── makefile │ ├── allocation │ ├── allocation.cbp │ ├── allocation.depend │ └── main.cpp │ ├── asin_network_client │ ├── asin_network_client.cbp │ ├── asin_network_client.depend │ ├── bin │ │ └── Debug │ │ │ └── user.txt │ ├── client.cpp │ ├── client.h │ ├── main.cpp │ └── parent.h │ ├── asio_samples_0_6_1 │ ├── build │ │ ├── intel-13.0 │ │ │ ├── asio_performance_test_client │ │ │ │ ├── asio_performance_test_client.vcxproj │ │ │ │ └── asio_performance_test_client.vcxproj.filters │ │ │ ├── asio_samples.sln │ │ │ ├── async_basics │ │ │ │ ├── async_basics.vcxproj │ │ │ │ └── async_basics.vcxproj.filters │ │ │ ├── async_basics2 │ │ │ │ ├── async_basics2.vcxproj │ │ │ │ └── async_basics2.vcxproj.filters │ │ │ ├── async_connect │ │ │ │ ├── async_connect.vcxproj │ │ │ │ └── async_connect.vcxproj.filters │ │ │ ├── echo_server │ │ │ │ ├── echo_server.vcxproj │ │ │ │ └── echo_server.vcxproj.filters │ │ │ ├── handler_storage_test │ │ │ │ ├── handler_storage_test.vcxproj │ │ │ │ └── handler_storage_test.vcxproj.filters │ │ │ ├── nmea_client │ │ │ │ ├── nmea_client.vcxproj │ │ │ │ └── nmea_client.vcxproj.filters │ │ │ └── windows_console_signal_test │ │ │ │ ├── windows_console_signal_test.vcxproj │ │ │ │ └── windows_console_signal_test.vcxproj.filters │ │ ├── msvc-10.0 │ │ │ ├── asio_performance_test_client │ │ │ │ ├── asio_performance_test_client.vcxproj │ │ │ │ └── asio_performance_test_client.vcxproj.filters │ │ │ ├── asio_samples.sln │ │ │ ├── async_basics │ │ │ │ ├── async_basics.vcxproj │ │ │ │ └── async_basics.vcxproj.filters │ │ │ ├── async_basics2 │ │ │ │ ├── async_basics2.vcxproj │ │ │ │ └── async_basics2.vcxproj.filters │ │ │ ├── async_connect │ │ │ │ ├── async_connect.vcxproj │ │ │ │ └── async_connect.vcxproj.filters │ │ │ ├── echo_server │ │ │ │ ├── echo_server.vcxproj │ │ │ │ └── echo_server.vcxproj.filters │ │ │ ├── handler_storage_test │ │ │ │ ├── handler_storage_test.vcxproj │ │ │ │ └── handler_storage_test.vcxproj.filters │ │ │ ├── nmea_client │ │ │ │ ├── nmea_client.vcxproj │ │ │ │ └── nmea_client.vcxproj.filters │ │ │ ├── qt_echo_server │ │ │ │ ├── Qt4VSPropertySheet.props │ │ │ │ ├── qt_echo_server.vcxproj │ │ │ │ └── qt_echo_server.vcxproj.filters │ │ │ └── windows_console_signal_test │ │ │ │ ├── windows_console_signal_test.vcxproj │ │ │ │ └── windows_console_signal_test.vcxproj.filters │ │ ├── msvc-11.0 │ │ │ ├── asio_performance_test_client │ │ │ │ ├── asio_performance_test_client.vcxproj │ │ │ │ └── asio_performance_test_client.vcxproj.filters │ │ │ ├── asio_samples.sln │ │ │ ├── async_basics │ │ │ │ ├── async_basics.vcxproj │ │ │ │ └── async_basics.vcxproj.filters │ │ │ ├── async_basics2 │ │ │ │ ├── async_basics2.vcxproj │ │ │ │ └── async_basics2.vcxproj.filters │ │ │ ├── async_connect │ │ │ │ ├── async_connect.vcxproj │ │ │ │ └── async_connect.vcxproj.filters │ │ │ ├── echo_server │ │ │ │ ├── echo_server.vcxproj │ │ │ │ └── echo_server.vcxproj.filters │ │ │ ├── handler_storage_test │ │ │ │ ├── handler_storage_test.vcxproj │ │ │ │ └── handler_storage_test.vcxproj.filters │ │ │ ├── nmea_client │ │ │ │ ├── nmea_client.vcxproj │ │ │ │ └── nmea_client.vcxproj.filters │ │ │ ├── qt_echo_server │ │ │ │ ├── qt_echo_server.vcxproj │ │ │ │ └── qt_echo_server.vcxproj.filters │ │ │ ├── shared_ptr_factory_test │ │ │ │ ├── shared_ptr_factory_test.vcxproj │ │ │ │ └── shared_ptr_factory_test.vcxproj.filters │ │ │ ├── sp_singleton_test │ │ │ │ ├── sp_singleton_test.vcxproj │ │ │ │ └── sp_singleton_test.vcxproj.filters │ │ │ └── windows_console_signal_test │ │ │ │ ├── windows_console_signal_test.vcxproj │ │ │ │ └── windows_console_signal_test.vcxproj.filters │ │ ├── msvc-9.0 │ │ │ ├── asio_performance_test_client │ │ │ │ └── asio_performance_test_client.vcproj │ │ │ ├── asio_samples.sln │ │ │ ├── async_basics │ │ │ │ └── async_basics.vcproj │ │ │ ├── async_basics2 │ │ │ │ └── async_basics2.vcproj │ │ │ ├── async_connect │ │ │ │ └── async_connect.vcproj │ │ │ ├── echo_server │ │ │ │ └── echo_server.vcproj │ │ │ ├── handler_storage_test │ │ │ │ └── handler_storage_test.vcproj │ │ │ ├── nmea_client │ │ │ │ └── nmea_client.vcproj │ │ │ └── windows_console_signal_test │ │ │ │ └── windows_console_signal_test.vcproj │ │ ├── patches │ │ │ ├── boost_1_49_0 │ │ │ │ ├── asio_win_interlocked.patch │ │ │ │ └── intel_12_1_shared_ptr_operator_bool.patch │ │ │ ├── boost_1_50_0 │ │ │ │ ├── asio_win_interlocked.patch │ │ │ │ ├── intel_12_1_shared_ptr_operator_bool.patch │ │ │ │ └── msvc_warnings.patch │ │ │ ├── boost_1_51_0 │ │ │ │ ├── asio_win_interlocked.patch │ │ │ │ ├── intel_12_1_asio_warnings.patch │ │ │ │ ├── intel_12_1_mutex.patch │ │ │ │ ├── intel_12_1_shared_ptr_operator_bool.patch │ │ │ │ └── msvc_warnings.patch │ │ │ ├── boost_1_52_0 │ │ │ │ ├── asio_win_interlocked.patch │ │ │ │ ├── intel_12_1_asio_warnings.patch │ │ │ │ ├── intel_12_1_mutex.patch │ │ │ │ └── msvc_warnings.patch │ │ │ ├── boost_1_53_0 │ │ │ │ └── msvc_warnings.patch │ │ │ ├── boost_1_54_0 │ │ │ │ ├── coroutine_build.patch │ │ │ │ ├── intel_thread_once.patch │ │ │ │ └── msvc_warnings.patch │ │ │ ├── qt_4_8_1_patches │ │ │ │ ├── build_shared_win32-msvc2008.patch │ │ │ │ ├── build_shared_win32-msvc2010.patch │ │ │ │ ├── build_static_win32-msvc2008.patch │ │ │ │ ├── build_static_win32-msvc2010.patch │ │ │ │ ├── container_msvc_warn.patch │ │ │ │ └── win_cursors.patch │ │ │ ├── qt_4_8_4_patches │ │ │ │ ├── build_shared_win32-msvc2008.patch │ │ │ │ ├── build_shared_win32-msvc2010.patch │ │ │ │ ├── build_static_win32-msvc2008.patch │ │ │ │ ├── build_static_win32-msvc2010.patch │ │ │ │ ├── container_msvc_warn.patch │ │ │ │ └── win_cursors.patch │ │ │ └── qt_5_0_0_patches │ │ │ │ ├── Windows_NOMINMAX_error.patch │ │ │ │ ├── msvc_warn.patch │ │ │ │ ├── win32-msvc2010_shared_build.patch │ │ │ │ └── win32-msvc2012_shared_build.patch │ │ └── qmake │ │ │ ├── asio_performance_test_client │ │ │ └── asio_performance_test_client.pro │ │ │ ├── asio_samples.pro │ │ │ ├── async_basics │ │ │ └── async_basics.pro │ │ │ ├── async_basics2 │ │ │ └── async_basics2.pro │ │ │ ├── async_connect │ │ │ └── async_connect.pro │ │ │ ├── config.pri │ │ │ ├── echo_server │ │ │ └── echo_server.pro │ │ │ ├── handler_storage_test │ │ │ └── handler_storage_test.pro │ │ │ ├── nmea_client │ │ │ └── nmea_client.pro │ │ │ ├── qt_echo_server │ │ │ └── qt_echo_server.pro │ │ │ ├── shared_ptr_factory_test │ │ │ └── shared_ptr_factory_test.pro │ │ │ └── windows_console_signal_test │ │ │ └── windows_console_signal_test.pro │ ├── doc │ │ ├── asio-samples short description.pdf │ │ └── echo_server.pdf │ ├── include │ │ └── ma │ │ │ ├── async_connect.hpp │ │ │ ├── bind_handler.hpp │ │ │ ├── codecvt_cast.hpp │ │ │ ├── config.hpp │ │ │ ├── console_close_guard.hpp │ │ │ ├── context_alloc_handler.hpp │ │ │ ├── context_invoke_handler.hpp │ │ │ ├── context_wrapped_handler.hpp │ │ │ ├── custom_alloc_handler.hpp │ │ │ ├── cyclic_buffer.hpp │ │ │ ├── detail │ │ │ ├── binder.hpp │ │ │ ├── handler_ptr.hpp │ │ │ ├── intrusive_list.hpp │ │ │ ├── service_base.hpp │ │ │ └── sp_singleton.hpp │ │ │ ├── echo │ │ │ └── server │ │ │ │ ├── error.hpp │ │ │ │ ├── pooled_session_factory.hpp │ │ │ │ ├── qt │ │ │ │ ├── custommetatypes.h │ │ │ │ ├── execution_config.h │ │ │ │ ├── execution_config_fwd.h │ │ │ │ ├── mainform.h │ │ │ │ ├── meta_type_register_error.h │ │ │ │ ├── service.h │ │ │ │ ├── service_fwd.h │ │ │ │ ├── serviceforwardsignal.h │ │ │ │ ├── serviceforwardsignal_fwd.h │ │ │ │ ├── serviceservantsignal.h │ │ │ │ ├── serviceservantsignal_fwd.h │ │ │ │ ├── servicestate.h │ │ │ │ └── signal_connect_error.h │ │ │ │ ├── session.hpp │ │ │ │ ├── session_config.hpp │ │ │ │ ├── session_config_fwd.hpp │ │ │ │ ├── session_factory.hpp │ │ │ │ ├── session_factory_fwd.hpp │ │ │ │ ├── session_fwd.hpp │ │ │ │ ├── session_manager.hpp │ │ │ │ ├── session_manager_config.hpp │ │ │ │ ├── session_manager_config_fwd.hpp │ │ │ │ ├── session_manager_fwd.hpp │ │ │ │ ├── session_manager_stats.hpp │ │ │ │ ├── session_manager_stats_fwd.hpp │ │ │ │ └── simple_session_factory.hpp │ │ │ ├── handler_alloc_helpers.hpp │ │ │ ├── handler_allocator.hpp │ │ │ ├── handler_cont_helpers.hpp │ │ │ ├── handler_invoke_helpers.hpp │ │ │ ├── handler_storage.hpp │ │ │ ├── handler_storage_service.hpp │ │ │ ├── limited_int.hpp │ │ │ ├── lockable_wrapped_handler.hpp │ │ │ ├── nmea │ │ │ ├── cyclic_read_session.hpp │ │ │ ├── cyclic_read_session_fwd.hpp │ │ │ ├── error.hpp │ │ │ └── frame.hpp │ │ │ ├── shared_ptr_factory.hpp │ │ │ ├── sp_intrusive_list.hpp │ │ │ ├── steady_deadline_timer.hpp │ │ │ ├── strand_wrapped_handler.hpp │ │ │ ├── tutorial │ │ │ ├── async_implementation.hpp │ │ │ └── async_interface.hpp │ │ │ ├── tutorial2 │ │ │ ├── async_implementation.hpp │ │ │ ├── async_interface.hpp │ │ │ ├── do_something_handler.hpp │ │ │ └── do_something_handler_fwd.hpp │ │ │ ├── type_traits.hpp │ │ │ └── windows │ │ │ ├── console_signal.hpp │ │ │ └── console_signal_service.hpp │ └── src │ │ ├── asio_performance_test_client │ │ └── main.cpp │ │ ├── async_basics │ │ └── main.cpp │ │ ├── async_basics2 │ │ └── main.cpp │ │ ├── async_connect │ │ └── main.cpp │ │ ├── echo_server │ │ ├── config.cpp │ │ ├── config.hpp │ │ └── main.cpp │ │ ├── handler_storage_test │ │ └── main.cpp │ │ ├── ma │ │ ├── console_close_guard.cpp │ │ ├── echo │ │ │ └── server │ │ │ │ ├── error.cpp │ │ │ │ ├── pooled_session_factory.cpp │ │ │ │ ├── qt │ │ │ │ ├── custommetatypes.cpp │ │ │ │ ├── mainform.cpp │ │ │ │ ├── mainform.ui │ │ │ │ └── service.cpp │ │ │ │ ├── session.cpp │ │ │ │ ├── session_manager.cpp │ │ │ │ └── simple_session_factory.cpp │ │ ├── nmea │ │ │ ├── cyclic_read_session.cpp │ │ │ └── error.cpp │ │ ├── tutorial │ │ │ └── async_implementation.cpp │ │ ├── tutorial2 │ │ │ └── async_implementation.cpp │ │ └── windows │ │ │ └── console_signal_service.cpp │ │ ├── nmea_client │ │ └── main.cpp │ │ ├── qt_echo_server │ │ ├── main.cpp │ │ ├── qt_echo_server.ico │ │ └── qt_echo_server.rc │ │ ├── shared_ptr_factory_test │ │ └── main.cpp │ │ ├── sp_singleton_test │ │ └── main.cpp │ │ └── windows_console_signal_test │ │ └── main.cpp │ ├── buffers │ ├── buffers.cbp │ ├── buffers.depend │ └── main.cpp │ ├── chat_client │ ├── bin │ │ └── Debug │ │ │ └── auto.bat │ ├── chat_client.cbp │ ├── chat_client.depend │ ├── chat_client.layout │ ├── chat_message.hpp │ └── main.cpp │ ├── chat_server │ ├── chat_message.hpp │ ├── chat_server.cbp │ ├── chat_server.depend │ ├── chat_server.layout │ └── main.cpp │ ├── client_broadcast │ ├── client_broadcast.cbp │ ├── client_broadcast.depend │ └── main.cpp │ ├── client_example │ ├── client.cpp │ ├── client.h │ ├── client_example.cbp │ ├── client_example.depend │ └── main.cpp │ ├── daytime_client │ ├── daytime_client.cbp │ ├── daytime_client.depend │ └── main.cpp │ ├── echo │ ├── echo.cbp │ ├── echo.depend │ ├── echo.layout │ └── main.cpp │ ├── echo_client │ ├── echo_client.cbp │ ├── echo_client.depend │ ├── echo_client.layout │ └── main.cpp │ ├── example │ ├── example.cbp │ ├── example.depend │ ├── example.layout │ └── main.cpp │ ├── logger_basic │ ├── basic_logger.hpp │ ├── log.txt │ ├── logger.hpp │ ├── logger_basic.cbp │ ├── logger_basic.depend │ ├── logger_service.cpp │ ├── logger_service.hpp │ ├── main.cpp │ └── stream_socket_service.hpp │ ├── multicaster_reciver │ ├── main.cpp │ └── multicaster_reciver.cbp │ ├── multicaster_sender │ ├── main.cpp │ ├── multicaster_sender.cbp │ └── multicaster_sender.depend │ ├── non_blocking │ ├── main.cpp │ ├── non_blocking.cbp │ └── non_blocking.depend │ ├── server_broadcast │ ├── main.cpp │ ├── server_broadcast.cbp │ ├── server_broadcast.depend │ └── server_broadcast.layout │ ├── time_timer │ ├── main.cpp │ ├── time_timer.cbp │ └── time_timer.depend │ ├── timeout │ ├── main.cpp │ └── timeout.cbp │ ├── timeout_server │ ├── main.cpp │ └── timeout_server.cbp │ └── timer │ ├── main.cpp │ └── timer.cbp ├── Perl Scripts ├── Abrir Word y escribir texto.pl ├── Admin Finder.pl ├── Cambiar Fondo.pl ├── Cliente Nestafaer.pl ├── Crack MD5.pl ├── Directorios pag.pl ├── FTP Manager.pl ├── Funcino ScreenShot.pl ├── Funcion Archivos 0.pl ├── Funcion CMD.pl ├── Funcion Disco duro ejecutandose.pl ├── Funcion Mouse loco.pl ├── Funcion Ventana loca.pl ├── Funcion archivos.pl ├── Get.pl ├── Get.txt ├── IRC bot Spammer.pl ├── Keylogger FTP.pl ├── Keylogger.pl ├── PasteBin Uploader.pl ├── Player.pl ├── Program Manager.pl ├── Server Nestafaer.pl ├── Shell CGI.pl ├── Simple Web server.pl ├── bot2.pl ├── ejemplo modulo mechsnize.pl ├── ejemplo.pl ├── funcion reproducir.pl ├── grafica.pl ├── hash.txt ├── navegar.pl ├── prueba.pl ├── scanner sql.pl ├── scanner sql2.pl ├── scanner vulnes.pl ├── script-navideno.pl ├── socket.pl └── web.pl ├── Php ├── Imagens Dinamicas │ ├── dinamica.php │ ├── dinamica.php~ │ ├── dinamica8.php │ ├── imagenes │ │ ├── 4chan-ddos1.gif │ │ ├── 6876_9749_750.gif │ │ ├── Thumbs.db │ │ └── images.jpeg │ ├── xD.txt │ └── xd.php ├── contador.txt ├── index.html ├── index2.php ├── shell.php ├── shell.txt └── ~$index.html ├── Python └── Thumbs.db └── README.md /Asm/Dll/prueba.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Dll/prueba.asm -------------------------------------------------------------------------------- /Asm/Dll/prueba.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Dll/prueba.dll -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/BEER/BEER.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/BEER/BEER.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/BEER/BEER.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/BEER/BEER.EXE -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/DDRAW/DDRAW.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/DDRAW/DDRAW.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/DDRAW/DDRAW.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/DDRAW/DDRAW.EXE -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/DDRAW/DDRAW.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/DDRAW/DDRAW.GIF -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/DDRAW/DDRAW.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/DDRAW/DDRAW.INC -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/DDRAW/GIF87A.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/DDRAW/GIF87A.INC -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/DIALOG/DIALOG.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/DIALOG/DIALOG.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/DIALOG/DIALOG.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/DIALOG/DIALOG.EXE -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/DLL/ERRORMSG.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/DLL/ERRORMSG.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/DLL/ERRORMSG.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/DLL/ERRORMSG.DLL -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/DLL/LASTERR.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/DLL/LASTERR.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/DLL/LASTERR.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/DLL/LASTERR.EXE -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/HELLO/HELLO.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/HELLO/HELLO.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/HELLO/HELLO.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/HELLO/HELLO.EXE -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/MINIPAD/MINIPAD.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/MINIPAD/MINIPAD.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/MINIPAD/MINIPAD.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/MINIPAD/MINIPAD.EXE -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/MINIPAD/MINIPAD.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/MINIPAD/MINIPAD.ICO -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/MSCOFF/MSCOFF.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/MSCOFF/MSCOFF.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/MSCOFF/MSCOFF.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/MSCOFF/MSCOFF.OBJ -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/OPENGL/OPENGL.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/OPENGL/OPENGL.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/OPENGL/OPENGL.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/OPENGL/OPENGL.EXE -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/OPENGL/OPENGL.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/OPENGL/OPENGL.INC -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/PEDEMO/PEDEMO.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/PEDEMO/PEDEMO.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/PEDEMO/PEDEMO.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/PEDEMO/PEDEMO.EXE -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/TEMPLATE/TEMPLATE.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/TEMPLATE/TEMPLATE.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/TEMPLATE/TEMPLATE.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/TEMPLATE/TEMPLATE.EXE -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/USECOM/USECOM.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/USECOM/USECOM.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/USECOM/USECOM.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/USECOM/USECOM.EXE -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/WIN64/MANDEL/DDRAW64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/WIN64/MANDEL/DDRAW64.INC -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/WIN64/MANDEL/MANDEL.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/WIN64/MANDEL/MANDEL.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/WIN64/MANDEL/MANDEL.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/WIN64/MANDEL/MANDEL.EXE -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/WIN64/OPENGL/OPENGL.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/WIN64/OPENGL/OPENGL.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/WIN64/OPENGL/OPENGL.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/WIN64/OPENGL/OPENGL.EXE -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/WIN64/PE64DEMO/PE64DEMO.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/WIN64/PE64DEMO/PE64DEMO.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/WIN64/PE64DEMO/PE64DEMO.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/WIN64/PE64DEMO/PE64DEMO.EXE -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/WIN64/TEMPLATE/TEMPLATE.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/WIN64/TEMPLATE/TEMPLATE.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/WIN64/TEMPLATE/TEMPLATE.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/WIN64/TEMPLATE/TEMPLATE.EXE -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/WIN64/USECOM/USECOM.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/WIN64/USECOM/USECOM.ASM -------------------------------------------------------------------------------- /Asm/Fasm/EXAMPLES/WIN64/USECOM/USECOM.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/EXAMPLES/WIN64/USECOM/USECOM.EXE -------------------------------------------------------------------------------- /Asm/Fasm/FASM.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/FASM.PDF -------------------------------------------------------------------------------- /Asm/Fasm/FASMW.INI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/FASMW.INI -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/ADVAPI32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/ADVAPI32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/API/ADVAPI32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/API/ADVAPI32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/API/COMCTL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/API/COMCTL32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/API/COMDLG32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/API/COMDLG32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/API/GDI32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/API/GDI32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/API/KERNEL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/API/KERNEL32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/API/SHELL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/API/SHELL32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/API/USER32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/API/USER32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/API/WSOCK32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/API/WSOCK32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/COMCTL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/COMCTL32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/COMDLG32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/COMDLG32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/ENCODING/UTF8.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/ENCODING/UTF8.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/ENCODING/WIN1250.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/ENCODING/WIN1250.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/ENCODING/WIN1251.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/ENCODING/WIN1251.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/ENCODING/WIN1252.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/ENCODING/WIN1252.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/ENCODING/WIN1253.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/ENCODING/WIN1253.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/ENCODING/WIN1254.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/ENCODING/WIN1254.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/ENCODING/WIN1255.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/ENCODING/WIN1255.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/ENCODING/WIN1256.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/ENCODING/WIN1256.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/ENCODING/WIN1257.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/ENCODING/WIN1257.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/ENCODING/WIN1258.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/ENCODING/WIN1258.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/ENCODING/WIN874.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/ENCODING/WIN874.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/EQUATES/COMCTL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/EQUATES/COMCTL32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/EQUATES/COMCTL64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/EQUATES/COMCTL64.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/EQUATES/COMDLG32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/EQUATES/COMDLG32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/EQUATES/COMDLG64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/EQUATES/COMDLG64.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/EQUATES/GDI32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/EQUATES/GDI32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/EQUATES/KERNEL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/EQUATES/KERNEL32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/EQUATES/KERNEL64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/EQUATES/KERNEL64.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/EQUATES/SHELL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/EQUATES/SHELL32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/EQUATES/SHELL64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/EQUATES/SHELL64.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/EQUATES/USER32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/EQUATES/USER32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/EQUATES/USER64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/EQUATES/USER64.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/EQUATES/WSOCK32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/EQUATES/WSOCK32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/GDI32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/GDI32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/KERNEL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/KERNEL32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/MACRO/COM32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/MACRO/COM32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/MACRO/COM64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/MACRO/COM64.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/MACRO/EXPORT.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/MACRO/EXPORT.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/MACRO/IF.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/MACRO/IF.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/MACRO/IMPORT32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/MACRO/IMPORT32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/MACRO/IMPORT64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/MACRO/IMPORT64.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/MACRO/MASM.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/MACRO/MASM.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/MACRO/PROC32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/MACRO/PROC32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/MACRO/PROC64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/MACRO/PROC64.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/MACRO/RESOURCE.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/MACRO/RESOURCE.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/MACRO/STRUCT.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/MACRO/STRUCT.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/PCOUNT/ADVAPI32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/PCOUNT/ADVAPI32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/PCOUNT/COMCTL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/PCOUNT/COMCTL32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/PCOUNT/COMDLG32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/PCOUNT/COMDLG32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/PCOUNT/GDI32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/PCOUNT/GDI32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/PCOUNT/KERNEL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/PCOUNT/KERNEL32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/PCOUNT/SHELL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/PCOUNT/SHELL32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/PCOUNT/USER32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/PCOUNT/USER32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/PCOUNT/WSOCK32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/PCOUNT/WSOCK32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/SHELL32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/SHELL32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/USER32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/USER32.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/WIN32A.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/WIN32A.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/WIN32AX.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/WIN32AX.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/WIN32AXP.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/WIN32AXP.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/WIN32W.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/WIN32W.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/WIN32WX.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/WIN32WX.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/WIN32WXP.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/WIN32WXP.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/WIN64A.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/WIN64A.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/WIN64AX.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/WIN64AX.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/WIN64AXP.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/WIN64AXP.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/WIN64W.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/WIN64W.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/WIN64WX.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/WIN64WX.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/WIN64WXP.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/WIN64WXP.INC -------------------------------------------------------------------------------- /Asm/Fasm/INCLUDE/WSOCK32.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/INCLUDE/WSOCK32.INC -------------------------------------------------------------------------------- /Asm/Fasm/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/LICENSE.TXT -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/ASSEMBLE.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/ASSEMBLE.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/AVX.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/AVX.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/DOS/FASM.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/DOS/FASM.ASM -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/DOS/MODES.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/DOS/MODES.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/DOS/SYSTEM.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/DOS/SYSTEM.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/ERRORS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/ERRORS.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/EXPRCALC.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/EXPRCALC.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/EXPRPARS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/EXPRPARS.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/FORMATS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/FORMATS.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/IDE/BLOCKS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/IDE/BLOCKS.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/IDE/EDIT.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/IDE/EDIT.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/IDE/FASMD/FASMD.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/IDE/FASMD/FASMD.ASM -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/IDE/FASMW/ASMEDIT.ASH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/IDE/FASMW/ASMEDIT.ASH -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/IDE/FASMW/ASMEDIT.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/IDE/FASMW/ASMEDIT.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/IDE/FASMW/FASM.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/IDE/FASMW/FASM.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/IDE/FASMW/FASMW.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/IDE/FASMW/FASMW.ASM -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/IDE/FASMW/RESOURCE/ASSIGN.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/IDE/FASMW/RESOURCE/ASSIGN.BMP -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/IDE/FASMW/RESOURCE/FASMW.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/IDE/FASMW/RESOURCE/FASMW.ICO -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/IDE/MEMORY.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/IDE/MEMORY.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/IDE/NAVIGATE.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/IDE/NAVIGATE.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/IDE/SEARCH.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/IDE/SEARCH.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/IDE/UNDO.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/IDE/UNDO.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/IDE/VARIABLE.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/IDE/VARIABLE.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/LIBC/FASM.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/LIBC/FASM.ASM -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/LIBC/SYSTEM.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/LIBC/SYSTEM.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/LINUX/FASM.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/LINUX/FASM.ASM -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/LINUX/SYSTEM.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/LINUX/SYSTEM.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/MESSAGES.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/MESSAGES.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/PARSER.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/PARSER.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/PREPROCE.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/PREPROCE.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/SYMBDUMP.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/SYMBDUMP.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/TABLES.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/TABLES.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/VARIABLE.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/VARIABLE.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/VERSION.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/VERSION.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/WIN32/FASM.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/WIN32/FASM.ASM -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/WIN32/SYSTEM.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/WIN32/SYSTEM.INC -------------------------------------------------------------------------------- /Asm/Fasm/SOURCE/X86_64.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/SOURCE/X86_64.INC -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/DOS/LISTING.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/DOS/LISTING.ASM -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/DOS/LOADER.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/DOS/LOADER.INC -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/DOS/PREPSRC.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/DOS/PREPSRC.ASM -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/DOS/SYMBOLS.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/DOS/SYMBOLS.ASM -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/DOS/SYSTEM.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/DOS/SYSTEM.INC -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/LIBC/CCALL.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/LIBC/CCALL.INC -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/LIBC/LISTING.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/LIBC/LISTING.ASM -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/LIBC/PREPSRC.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/LIBC/PREPSRC.ASM -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/LIBC/SYMBOLS.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/LIBC/SYMBOLS.ASM -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/LIBC/SYSTEM.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/LIBC/SYSTEM.INC -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/LISTING.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/LISTING.INC -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/PREPSRC.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/PREPSRC.INC -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/README.TXT -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/SYMBOLS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/SYMBOLS.INC -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/WIN32/LISTING.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/WIN32/LISTING.ASM -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/WIN32/PREPSRC.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/WIN32/PREPSRC.ASM -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/WIN32/SYMBOLS.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/WIN32/SYMBOLS.ASM -------------------------------------------------------------------------------- /Asm/Fasm/TOOLS/WIN32/SYSTEM.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/TOOLS/WIN32/SYSTEM.INC -------------------------------------------------------------------------------- /Asm/Fasm/WHATSNEW.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/WHATSNEW.TXT -------------------------------------------------------------------------------- /Asm/Fasm/fasmw16932.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Fasm/fasmw16932.zip -------------------------------------------------------------------------------- /Asm/Hook IAT.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Hook IAT.asm -------------------------------------------------------------------------------- /Asm/Impresion por consola.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Impresion por consola.ASM -------------------------------------------------------------------------------- /Asm/MASM/GDI sin dependencia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/MASM/GDI sin dependencia -------------------------------------------------------------------------------- /Asm/MASM/OpenFile sin dependencia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/MASM/OpenFile sin dependencia -------------------------------------------------------------------------------- /Asm/MASM/eject libiano.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/MASM/eject libiano.ASM -------------------------------------------------------------------------------- /Asm/Shell code.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Shell code.ASM -------------------------------------------------------------------------------- /Asm/Tutoriales/tut1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Tutoriales/tut1.txt -------------------------------------------------------------------------------- /Asm/Tutoriales/tut2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Tutoriales/tut2.txt -------------------------------------------------------------------------------- /Asm/Tutoriales/tut3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/Tutoriales/tut3.txt -------------------------------------------------------------------------------- /Asm/WriteProcessMemory Hook.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/WriteProcessMemory Hook.ASM -------------------------------------------------------------------------------- /Asm/algoritmo lz.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/algoritmo lz.ASM -------------------------------------------------------------------------------- /Asm/calc masm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/calc masm.asm -------------------------------------------------------------------------------- /Asm/call avec ret opcode.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/call avec ret opcode.ASM -------------------------------------------------------------------------------- /Asm/call avec ret.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/call avec ret.ASM -------------------------------------------------------------------------------- /Asm/debug.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/debug.ASM -------------------------------------------------------------------------------- /Asm/ejec libiao.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/ejec libiao.ASM -------------------------------------------------------------------------------- /Asm/ejemplo fasm 1.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/ejemplo fasm 1.ASM -------------------------------------------------------------------------------- /Asm/ejemplo fasm 2.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/ejemplo fasm 2.ASM -------------------------------------------------------------------------------- /Asm/inyeccion dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/inyeccion dll.txt -------------------------------------------------------------------------------- /Asm/inyectar calculadora.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/inyectar calculadora.ASM -------------------------------------------------------------------------------- /Asm/lee por consola.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/lee por consola.ASM -------------------------------------------------------------------------------- /Asm/piramide.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/piramide.ASM -------------------------------------------------------------------------------- /Asm/practica 1.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/practica 1.ASM -------------------------------------------------------------------------------- /Asm/practica 2.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/practica 2.ASM -------------------------------------------------------------------------------- /Asm/practica 3.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/practica 3.ASM -------------------------------------------------------------------------------- /Asm/practica4.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/practica4.ASM -------------------------------------------------------------------------------- /Asm/prueba 6.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Asm/prueba 6.ASM -------------------------------------------------------------------------------- /C . C++/C++ (variado)/C++ Codes/Old Stuff/Libreria estatica/Project1.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /C . C++/C++ (variado)/CGI/hellow_p.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/CGI/hellow_p.pl -------------------------------------------------------------------------------- /C . C++/C++ (variado)/CGI/hellow_word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/CGI/hellow_word.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/CGI/hellow_word.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/CGI/hellow_word.cgi -------------------------------------------------------------------------------- /C . C++/C++ (variado)/CGI/simple.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/CGI/simple.pl -------------------------------------------------------------------------------- /C . C++/C++ (variado)/COM/Acerca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/COM/Acerca.txt -------------------------------------------------------------------------------- /C . C++/C++ (variado)/COM/Exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/COM/Exports.def -------------------------------------------------------------------------------- /C . C++/C++ (variado)/COM/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/COM/Makefile.win -------------------------------------------------------------------------------- /C . C++/C++ (variado)/COM/comcli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/COM/comcli.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/COM/comcli.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/COM/comcli.dev -------------------------------------------------------------------------------- /C . C++/C++ (variado)/COM/comclientc.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/COM/comclientc.rar -------------------------------------------------------------------------------- /C . C++/C++ (variado)/COM/coms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/COM/coms.h -------------------------------------------------------------------------------- /C . C++/C++ (variado)/COM/comserverc.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/COM/comserverc.rar -------------------------------------------------------------------------------- /C . C++/C++ (variado)/COM/cserver.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/COM/cserver.dev -------------------------------------------------------------------------------- /C . C++/C++ (variado)/COM/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/COM/main.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Cheats/Inyector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Cheats/Inyector.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Cheats/KiTrap0D/ADVISORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Cheats/KiTrap0D/ADVISORY -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Cheats/KiTrap0D/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Cheats/KiTrap0D/Makefile -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Cheats/KiTrap0D/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Cheats/KiTrap0D/README -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Cheats/KiTrap0D/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Cheats/KiTrap0D/Thumbs.db -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Cheats/Otro Inyector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Cheats/Otro Inyector.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Cheats/Project1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Cheats/Project1.dll -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Cheats/Tutorial.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Cheats/Tutorial.rar -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/Basic Dll/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/Basic Dll/Makefile.win -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/Basic Dll/Project1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/Basic Dll/Project1.dll -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/Basic Dll/Project3.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/Basic Dll/Project3.dev -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/Basic Dll/Project3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/Basic Dll/Project3.dll -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/Basic Dll/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/Basic Dll/dll.h -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/Basic Dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/Basic Dll/dllmain.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/Basic Dll/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/Basic Dll/main.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/Busca minas/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/Busca minas/dllmain.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/DLLs con Dev-C++.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/DLLs con Dev-C++.pdf -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/Dll Inyeccion #1/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/Dll Inyeccion #1/dll.h -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/Form In DLL.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/Form In DLL.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/Otras Dlls/1/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/Otras Dlls/1/dll.h -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/Project1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/Project1.dll -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/RootKi/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/RootKi/Makefile.win -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/RootKi/Project1.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/RootKi/Project1.dev -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/RootKi/Project1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/RootKi/Project1.dll -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/RootKi/Project1.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/RootKi/Project1.layout -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/RootKi/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/RootKi/dll.h -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/RootKi/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/RootKi/dllmain.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/RootKi/libProject1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/RootKi/libProject1.a -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/RootKi/libProject1.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/RootKi/libProject1.def -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/inyeccion sin dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/inyeccion sin dll.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Dll/inyecciones.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Dll/inyecciones.pdf -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Drivers/Dev example/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Drivers/Dev example/dll.h -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Drivers/IOCTL/IOCTL.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Drivers/IOCTL/IOCTL.cbp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Drivers/IOCTL/IOCTL.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Drivers/IOCTL/IOCTL.layout -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Drivers/IOCTL/IOCTL.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Drivers/IOCTL/IOCTL.sys -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Drivers/IOCTL/cliente.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Drivers/IOCTL/cliente.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Drivers/IOCTL/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Drivers/IOCTL/driver.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Drivers/dkomdriver/ntifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Drivers/dkomdriver/ntifs.h -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Drivers/dkomdriver/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Drivers/dkomdriver/sources -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Hooks/CHook/cHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Hooks/CHook/cHook.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Hooks/CHook/cHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Hooks/CHook/cHook.h -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Hooks/ClassHook/Acerca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Hooks/ClassHook/Acerca.txt -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Hooks/EAT hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Hooks/EAT hook.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Hooks/Hook CBT/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Hooks/Hook CBT/dll.h -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Hooks/Hook CBT/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Hooks/Hook CBT/dllmain.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Hooks/Hook CBT/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Hooks/Hook CBT/main.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Hooks/MesageBoxE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Hooks/MesageBoxE.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/OverFlow/vuln exp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/OverFlow/vuln exp.pl -------------------------------------------------------------------------------- /C . C++/C++ (variado)/OverFlow/vuln1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/OverFlow/vuln1.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/OverFlow/vuln2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/OverFlow/vuln2.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/1.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/10.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/1003.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/1003.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/1023.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/1023.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/11.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/1123.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/1123.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/1355.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/1355.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/18.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/1842.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/1842.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/19.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/19.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/19.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/2.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/20.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/20.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/21.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/22.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/23.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/24.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/25.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/26.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/27.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/27.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/28.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/28.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/29.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/29.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/3.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/30.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/4.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/5.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/6.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/8.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/9.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/Try/trys/ac_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/Try/trys/ac_time.h -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/Try/trys/collatz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/Try/trys/collatz.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/Try/trys/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/Try/trys/main.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/Try/trys/meh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/Try/trys/meh.txt -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/Try/trys/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/Try/trys/names.txt -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/Try/trys/num.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/Try/trys/num.txt -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/Try/trys/trys.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/Try/trys/trys.cbp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/aereop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/aereop.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/bajito.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/bajito.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/bla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/bla.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/bignum.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/bin.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/capicua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/capicua.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/div_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/div_4.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/div_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/div_6.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/general_election.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/hellow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/hellow.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/last_digit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/last_digit.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/1.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/10.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/2.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/3.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/4.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/5.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/6.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/6.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/7.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/8.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/9.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/nuevo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/nuevo.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/old.txt -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/test.txt -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/prueba/type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/prueba/type.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/pucmm210.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/pucmm210.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/sum.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/c/sum_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/c/sum_2.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/catorce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/catorce.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/catorce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/catorce.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/colas_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/colas_vector.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/diez.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/diez.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/div_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/div_5.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/doce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/doce.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/geometry_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/geometry_task.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.12.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.13.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.14.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.15.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.16.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.17.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.18.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.19.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.20.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.21.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.22.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.22.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.23.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.24.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.25.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.25.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/3.26.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/iso100/3.26.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/iso100/numeros.txt: -------------------------------------------------------------------------------- 1 | 12 34 56 78 91 01 11 21 3 -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/librerias/libjoto.h: -------------------------------------------------------------------------------- 1 | 2 | void *cargar(char* c); 3 | -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/lista.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/lista.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/live_universe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/live_universe.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/meh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/meh.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/nueve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/nueve.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/priority_quee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/priority_quee.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/project_euler_17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/project_euler_17.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/quee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/quee.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/quince.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/quince.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/sieete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/sieete.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/space_e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/space_e.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/space_em.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/space_em.c -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/sucesiones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/sucesiones.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/three_coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/three_coins.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/three_coins_e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/three_coins_e.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/trece.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/trece.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Pruebas/weblib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Pruebas/weblib.h -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Receteo de IP.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Receteo de IP.bat -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Socket/Cliente.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Socket/Cliente.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Socket/Servidor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Socket/Servidor.cpp -------------------------------------------------------------------------------- /C . C++/C++ (variado)/Socket/tuto_winsock.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/Socket/tuto_winsock.pdf -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/ProgWin5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/ProgWin5.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/readme.txt -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win004.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win004.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win005.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win005.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win009.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win009.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win010.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win010.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win011.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win011.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win012.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win012.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win013.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win013.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win014.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win014.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win015.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win015.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win016.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win016.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win017.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win017.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win018.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win018.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win019.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win019.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win020.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win020.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win021.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win021.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win022.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win022.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win023.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win023.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win024.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win024.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win025.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win025.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/win076.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/win076.zip -------------------------------------------------------------------------------- /C . C++/C++ (variado)/WinAPI book/winapi5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/C++ (variado)/WinAPI book/winapi5.zip -------------------------------------------------------------------------------- /C . C++/Crackme/Crackme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Crackme/Crackme.cpp -------------------------------------------------------------------------------- /C . C++/Crackme/Dll prueba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Crackme/Dll prueba.cpp -------------------------------------------------------------------------------- /C . C++/Crackme/Keygen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Crackme/Keygen.cpp -------------------------------------------------------------------------------- /C . C++/Directx/1/Nave/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/Nave/Makefile.win -------------------------------------------------------------------------------- /C . C++/Directx/1/Nave/Output/MingW/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/Nave/Output/MingW/source.txt -------------------------------------------------------------------------------- /C . C++/Directx/1/Nave/Project1.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/Nave/Project1.dev -------------------------------------------------------------------------------- /C . C++/Directx/1/Nave/Project1.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/Nave/Project1.layout -------------------------------------------------------------------------------- /C . C++/Directx/1/Nave/d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/Nave/d3d9.h -------------------------------------------------------------------------------- /C . C++/Directx/1/Nave/d3d9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/Nave/d3d9.lib -------------------------------------------------------------------------------- /C . C++/Directx/1/Nave/d3d9caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/Nave/d3d9caps.h -------------------------------------------------------------------------------- /C . C++/Directx/1/Nave/d3d9types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/Nave/d3d9types.h -------------------------------------------------------------------------------- /C . C++/Directx/1/Nave/libd3d9.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/Nave/libd3d9.a -------------------------------------------------------------------------------- /C . C++/Directx/1/Nave/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/Nave/main.cpp -------------------------------------------------------------------------------- /C . C++/Directx/1/OpenGL/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/OpenGL/Makefile.win -------------------------------------------------------------------------------- /C . C++/Directx/1/OpenGL/Project1.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/OpenGL/Project1.dev -------------------------------------------------------------------------------- /C . C++/Directx/1/OpenGL/Project1.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/OpenGL/Project1.layout -------------------------------------------------------------------------------- /C . C++/Directx/1/OpenGL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/OpenGL/main.cpp -------------------------------------------------------------------------------- /C . C++/Directx/1/Proyecto GDI Paint/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/Proyecto GDI Paint/main.cpp -------------------------------------------------------------------------------- /C . C++/Directx/1/Soldier Front KIll hack/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/1/Soldier Front KIll hack/dll.h -------------------------------------------------------------------------------- /C . C++/Directx/Button Menu Source v2.5/ADE32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Button Menu Source v2.5/ADE32.h -------------------------------------------------------------------------------- /C . C++/Directx/Button Menu Source v2.5/Evo2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Button Menu Source v2.5/Evo2.cpp -------------------------------------------------------------------------------- /C . C++/Directx/Button Menu Source v2.5/Evo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Button Menu Source v2.5/Evo2.h -------------------------------------------------------------------------------- /C . C++/Directx/Button Menu Source v2.5/Release/settings/inj_settings.ini: -------------------------------------------------------------------------------- 1 | [INJECTOR] 2 | EXE=iw3mp.exe -------------------------------------------------------------------------------- /C . C++/Directx/Button Menu Source v2.5/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Button Menu Source v2.5/stdafx.h -------------------------------------------------------------------------------- /C . C++/Directx/D3D_Starterkit_v3.0b/D3D8/d3d8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3D_Starterkit_v3.0b/D3D8/d3d8.h -------------------------------------------------------------------------------- /C . C++/Directx/D3D_Starterkit_v3.0b/D3D8/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3D_Starterkit_v3.0b/D3D8/main.h -------------------------------------------------------------------------------- /C . C++/Directx/D3D_Starterkit_v3.0b/D3D9/d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3D_Starterkit_v3.0b/D3D9/d3d9.h -------------------------------------------------------------------------------- /C . C++/Directx/D3D_Starterkit_v3.0b/D3D9/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3D_Starterkit_v3.0b/D3D9/main.h -------------------------------------------------------------------------------- /C . C++/Directx/D3D_Starterkit_v3.0b/ReadMe.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3D_Starterkit_v3.0b/ReadMe.rtf -------------------------------------------------------------------------------- /C . C++/Directx/D3Dbase/D3Dbase.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3Dbase/D3Dbase.zip -------------------------------------------------------------------------------- /C . C++/Directx/D3Dbase/Release/D3D8_inject.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3Dbase/Release/D3D8_inject.ini -------------------------------------------------------------------------------- /C . C++/Directx/D3Dbase/Release/D3D9_inject.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3Dbase/Release/D3D9_inject.ini -------------------------------------------------------------------------------- /C . C++/Directx/D3Dbase/Release/D3Dbase8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3Dbase/Release/D3Dbase8.dll -------------------------------------------------------------------------------- /C . C++/Directx/D3Dbase/Release/D3Dbase9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3Dbase/Release/D3Dbase9.dll -------------------------------------------------------------------------------- /C . C++/Directx/D3Dbase/d3dbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3Dbase/d3dbase.cpp -------------------------------------------------------------------------------- /C . C++/Directx/D3Dbase/d3dbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3Dbase/d3dbase.h -------------------------------------------------------------------------------- /C . C++/Directx/D3Dbase/d3dfont8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3Dbase/d3dfont8.cpp -------------------------------------------------------------------------------- /C . C++/Directx/D3Dbase/d3dfont8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3Dbase/d3dfont8.h -------------------------------------------------------------------------------- /C . C++/Directx/D3Dbase/d3dfont9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3Dbase/d3dfont9.cpp -------------------------------------------------------------------------------- /C . C++/Directx/D3Dbase/d3dfont9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3Dbase/d3dfont9.h -------------------------------------------------------------------------------- /C . C++/Directx/D3Dbase/d3dmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3Dbase/d3dmenu.cpp -------------------------------------------------------------------------------- /C . C++/Directx/D3Dbase/d3dmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3Dbase/d3dmenu.h -------------------------------------------------------------------------------- /C . C++/Directx/D3Dbase/hackbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/D3Dbase/hackbase.cpp -------------------------------------------------------------------------------- /C . C++/Directx/DirectX/Demo de animacion/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/DirectX/Demo de animacion/main.h -------------------------------------------------------------------------------- /C . C++/Directx/DirectX/Entorno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/DirectX/Entorno.cpp -------------------------------------------------------------------------------- /C . C++/Directx/DirectX/Proyecto/Design.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/DirectX/Proyecto/Design.h -------------------------------------------------------------------------------- /C . C++/Directx/DirectX/Proyecto/Loads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/DirectX/Proyecto/Loads.h -------------------------------------------------------------------------------- /C . C++/Directx/DirectX/Proyecto/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/DirectX/Proyecto/Makefile.win -------------------------------------------------------------------------------- /C . C++/Directx/DirectX/Proyecto/Project1.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/DirectX/Proyecto/Project1.dev -------------------------------------------------------------------------------- /C . C++/Directx/DirectX/Proyecto/Project1.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/DirectX/Proyecto/Project1.layout -------------------------------------------------------------------------------- /C . C++/Directx/DirectX/Proyecto/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/DirectX/Proyecto/images.h -------------------------------------------------------------------------------- /C . C++/Directx/DirectX/Proyecto/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/DirectX/Proyecto/main.cpp -------------------------------------------------------------------------------- /C . C++/Directx/DirectX/Triangulo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/DirectX/Triangulo.cpp -------------------------------------------------------------------------------- /C . C++/Directx/Estructura Directx/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Estructura Directx/Makefile.win -------------------------------------------------------------------------------- /C . C++/Directx/Estructura Directx/Project1.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Estructura Directx/Project1.dev -------------------------------------------------------------------------------- /C . C++/Directx/Estructura Directx/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Estructura Directx/main.cpp -------------------------------------------------------------------------------- /C . C++/Directx/MenuTestApp.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/MenuTestApp.rar -------------------------------------------------------------------------------- /C . C++/Directx/MenuTestApp/MenuTestApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/MenuTestApp/MenuTestApp.sln -------------------------------------------------------------------------------- /C . C++/Directx/MenuTestApp/MenuTestApp.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/MenuTestApp/MenuTestApp.suo -------------------------------------------------------------------------------- /C . C++/Directx/Sf/SFWall/Menu2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Sf/SFWall/Menu2.cpp -------------------------------------------------------------------------------- /C . C++/Directx/Sf/SFWall/Read me.txt: -------------------------------------------------------------------------------- 1 | www.ttzgamerszone.net.ms 2 | 3 | 4 | -------------------------------------------------------------------------------- /C . C++/Directx/Sf/SFWall/d3dfont8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Sf/SFWall/d3dfont8.cpp -------------------------------------------------------------------------------- /C . C++/Directx/Sf/SFWall/d3dfont8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Sf/SFWall/d3dfont8.h -------------------------------------------------------------------------------- /C . C++/Directx/Sf/SFWall/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Sf/SFWall/main.cpp -------------------------------------------------------------------------------- /C . C++/Directx/Sf/SFWall/menu2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Sf/SFWall/menu2.h -------------------------------------------------------------------------------- /C . C++/Directx/Sf/SFWall/soldierfront.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Sf/SFWall/soldierfront.h -------------------------------------------------------------------------------- /C . C++/Directx/Sf/SFWall/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Sf/SFWall/stdafx.h -------------------------------------------------------------------------------- /C . C++/Directx/Sf/Valkyrie.ini: -------------------------------------------------------------------------------- 1 | [Process] 2 | Name= 3 | -------------------------------------------------------------------------------- /C . C++/Directx/Sf/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Sf/log.txt -------------------------------------------------------------------------------- /C . C++/Directx/Sf/soldierfront_dumped.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/Sf/soldierfront_dumped.rar -------------------------------------------------------------------------------- /C . C++/Directx/WinGDIDemoSLN/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/WinGDIDemoSLN/ReadMe.txt -------------------------------------------------------------------------------- /C . C++/Directx/WinGDIDemoSLN/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/WinGDIDemoSLN/StdAfx.cpp -------------------------------------------------------------------------------- /C . C++/Directx/WinGDIDemoSLN/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/WinGDIDemoSLN/StdAfx.h -------------------------------------------------------------------------------- /C . C++/Directx/WinGDIDemoSLN/WinDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/WinGDIDemoSLN/WinDemo.cpp -------------------------------------------------------------------------------- /C . C++/Directx/WinGDIDemoSLN/WinDemo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/WinGDIDemoSLN/WinDemo.dsp -------------------------------------------------------------------------------- /C . C++/Directx/WinGDIDemoSLN/WinDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/WinGDIDemoSLN/WinDemo.h -------------------------------------------------------------------------------- /C . C++/Directx/WinGDIDemoSLN/WinDemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/WinGDIDemoSLN/WinDemo.ico -------------------------------------------------------------------------------- /C . C++/Directx/WinGDIDemoSLN/WinDemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/WinGDIDemoSLN/WinDemo.rc -------------------------------------------------------------------------------- /C . C++/Directx/WinGDIDemoSLN/WinDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/WinGDIDemoSLN/WinDemo.sln -------------------------------------------------------------------------------- /C . C++/Directx/WinGDIDemoSLN/WinDemo.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/WinGDIDemoSLN/WinDemo.suo -------------------------------------------------------------------------------- /C . C++/Directx/WinGDIDemoSLN/WinDemo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/WinGDIDemoSLN/WinDemo.vcproj -------------------------------------------------------------------------------- /C . C++/Directx/WinGDIDemoSLN/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/WinGDIDemoSLN/resource.h -------------------------------------------------------------------------------- /C . C++/Directx/WinGDIDemoSLN/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Directx/WinGDIDemoSLN/small.ico -------------------------------------------------------------------------------- /C . C++/Estructura de datos/arbolabb-c.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/arbolabb-c.zip -------------------------------------------------------------------------------- /C . C++/Estructura de datos/arbolabb-cpp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/arbolabb-cpp.zip -------------------------------------------------------------------------------- /C . C++/Estructura de datos/arbolavl-c.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/arbolavl-c.zip -------------------------------------------------------------------------------- /C . C++/Estructura de datos/arbolavl-cpp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/arbolavl-cpp.zip -------------------------------------------------------------------------------- /C . C++/Estructura de datos/circular_c.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/circular_c.zip -------------------------------------------------------------------------------- /C . C++/Estructura de datos/cola_cpp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/cola_cpp.zip -------------------------------------------------------------------------------- /C . C++/Estructura de datos/cursocpp2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/cursocpp2.zip -------------------------------------------------------------------------------- /C . C++/Estructura de datos/lista_c.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/lista_c.zip -------------------------------------------------------------------------------- /C . C++/Estructura de datos/lista_cconclase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/lista_cconclase.c -------------------------------------------------------------------------------- /C . C++/Estructura de datos/lista_cpp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/lista_cpp.zip -------------------------------------------------------------------------------- /C . C++/Estructura de datos/lista_enlazada.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/lista_enlazada.c -------------------------------------------------------------------------------- /C . C++/Estructura de datos/lista_templ.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/lista_templ.zip -------------------------------------------------------------------------------- /C . C++/Estructura de datos/pila_c.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/pila_c.zip -------------------------------------------------------------------------------- /C . C++/Estructura de datos/pila_cpp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/pila_cpp.zip -------------------------------------------------------------------------------- /C . C++/Estructura de datos/pila_templ.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Estructura de datos/pila_templ.zip -------------------------------------------------------------------------------- /C . C++/Programas (old)/Apagar monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Apagar monitor.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Apagar windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Apagar windows.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Barra de progreso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Barra de progreso.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Broma de errores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Broma de errores.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Calendario.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Calendario.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Codificador ansi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Codificador ansi.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Cruel Spamming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Cruel Spamming.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Efecto Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Efecto Matrix.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Fecha y hora c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Fecha y hora c++.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/GameBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/GameBase.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Ice Cold Reload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Ice Cold Reload.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Juego Tres Rayas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Juego Tres Rayas.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Keylogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Keylogger.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Limpia Pantalla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Limpia Pantalla.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Mascota Virtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Mascota Virtual.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Mini Consola.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Mini Consola.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/MiniTaskmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/MiniTaskmanager.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/O mata 0 avoid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/O mata 0 avoid.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Pruebas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Pruebas.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/ScreenShot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/ScreenShot.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Syn Flood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Syn Flood.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Tateti V2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Tateti V2.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/TocaPelotas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/TocaPelotas.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/Vart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/Vart.cpp -------------------------------------------------------------------------------- /C . C++/Programas (old)/keyloger2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas (old)/keyloger2.cpp -------------------------------------------------------------------------------- /C . C++/Programas/Agenda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Agenda.cpp -------------------------------------------------------------------------------- /C . C++/Programas/Cadena aleatoria.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Cadena aleatoria.cpp -------------------------------------------------------------------------------- /C . C++/Programas/Cobro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Cobro.c -------------------------------------------------------------------------------- /C . C++/Programas/Codificador GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Codificador GUI.cpp -------------------------------------------------------------------------------- /C . C++/Programas/Concurso cph [----].cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Concurso cph [----].cpp -------------------------------------------------------------------------------- /C . C++/Programas/Detectar Unidades.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Detectar Unidades.cpp -------------------------------------------------------------------------------- /C . C++/Programas/Encuentra la letra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Encuentra la letra.cpp -------------------------------------------------------------------------------- /C . C++/Programas/Eprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Eprocess.cpp -------------------------------------------------------------------------------- /C . C++/Programas/Explode string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Explode string.cpp -------------------------------------------------------------------------------- /C . C++/Programas/Full screem comsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Full screem comsole.cpp -------------------------------------------------------------------------------- /C . C++/Programas/Inyeccion de Codigo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Inyeccion de Codigo.cpp -------------------------------------------------------------------------------- /C . C++/Programas/Juego vivora winapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Juego vivora winapi.cpp -------------------------------------------------------------------------------- /C . C++/Programas/Listar Directorios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Listar Directorios.cpp -------------------------------------------------------------------------------- /C . C++/Programas/Listar procesos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Listar procesos.cpp -------------------------------------------------------------------------------- /C . C++/Programas/MessageBox hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/MessageBox hook.c -------------------------------------------------------------------------------- /C . C++/Programas/Notas musicasles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Notas musicasles.cpp -------------------------------------------------------------------------------- /C . C++/Programas/PrintScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/PrintScreen.cpp -------------------------------------------------------------------------------- /C . C++/Programas/Resolver una IP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/Resolver una IP.cpp -------------------------------------------------------------------------------- /C . C++/Programas/The Biggest Loser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/The Biggest Loser.cpp -------------------------------------------------------------------------------- /C . C++/Programas/agenda_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/agenda_c.c -------------------------------------------------------------------------------- /C . C++/Programas/ajedres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/ajedres.cpp -------------------------------------------------------------------------------- /C . C++/Programas/ajustar fecha y hora.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/ajustar fecha y hora.cpp -------------------------------------------------------------------------------- /C . C++/Programas/archvio_o_directorio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/archvio_o_directorio.c -------------------------------------------------------------------------------- /C . C++/Programas/assert example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/assert example.cpp -------------------------------------------------------------------------------- /C . C++/Programas/autovisitador pag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/autovisitador pag.cpp -------------------------------------------------------------------------------- /C . C++/Programas/bhaarat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/bhaarat.txt -------------------------------------------------------------------------------- /C . C++/Programas/borrar un archivo c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/borrar un archivo c.cpp -------------------------------------------------------------------------------- /C . C++/Programas/c++ practicas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/c++ practicas.cpp -------------------------------------------------------------------------------- /C . C++/Programas/cifrado garbo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/cifrado garbo.cpp -------------------------------------------------------------------------------- /C . C++/Programas/clave por consola.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/clave por consola.cpp -------------------------------------------------------------------------------- /C . C++/Programas/codificado.txt: -------------------------------------------------------------------------------- 1 | abcCBA -------------------------------------------------------------------------------- /C . C++/Programas/codificador de archivos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/codificador de archivos.cpp -------------------------------------------------------------------------------- /C . C++/Programas/colas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/colas.cpp -------------------------------------------------------------------------------- /C . C++/Programas/credenciales msn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/credenciales msn.c -------------------------------------------------------------------------------- /C . C++/Programas/decimal a binario.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/decimal a binario.cpp -------------------------------------------------------------------------------- /C . C++/Programas/decodificar.txt: -------------------------------------------------------------------------------- 1 | ylafcfy -------------------------------------------------------------------------------- /C . C++/Programas/decoradores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/decoradores.cpp -------------------------------------------------------------------------------- /C . C++/Programas/devolver mas return.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/devolver mas return.c -------------------------------------------------------------------------------- /C . C++/Programas/dibujar polinomios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/dibujar polinomios.cpp -------------------------------------------------------------------------------- /C . C++/Programas/dropper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/dropper.cpp -------------------------------------------------------------------------------- /C . C++/Programas/dumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/dumper.cpp -------------------------------------------------------------------------------- /C . C++/Programas/ecuacion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/ecuacion.cpp -------------------------------------------------------------------------------- /C . C++/Programas/efecto matriz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/efecto matriz.cpp -------------------------------------------------------------------------------- /C . C++/Programas/ejemplo challengue 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/ejemplo challengue 2.cpp -------------------------------------------------------------------------------- /C . C++/Programas/ejemplo de shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/ejemplo de shell.cpp -------------------------------------------------------------------------------- /C . C++/Programas/enviar mail c++ (old).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/enviar mail c++ (old).cpp -------------------------------------------------------------------------------- /C . C++/Programas/exceptions_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/exceptions_class.cpp -------------------------------------------------------------------------------- /C . C++/Programas/factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/factorial.c -------------------------------------------------------------------------------- /C . C++/Programas/ficheros aleatorios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/ficheros aleatorios.cpp -------------------------------------------------------------------------------- /C . C++/Programas/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/file.cpp -------------------------------------------------------------------------------- /C . C++/Programas/getpass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/getpass.cpp -------------------------------------------------------------------------------- /C . C++/Programas/h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/h.c -------------------------------------------------------------------------------- /C . C++/Programas/ip resolver c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/ip resolver c.c -------------------------------------------------------------------------------- /C . C++/Programas/libro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/libro.txt -------------------------------------------------------------------------------- /C . C++/Programas/mencopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/mencopy.c -------------------------------------------------------------------------------- /C . C++/Programas/meses.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/meses.dat -------------------------------------------------------------------------------- /C . C++/Programas/notas musicales c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/notas musicales c++.cpp -------------------------------------------------------------------------------- /C . C++/Programas/object semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/object semaphore.c -------------------------------------------------------------------------------- /C . C++/Programas/piramide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/piramide.cpp -------------------------------------------------------------------------------- /C . C++/Programas/polimorfismo virtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/polimorfismo virtual.cpp -------------------------------------------------------------------------------- /C . C++/Programas/prender el nun lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/prender el nun lock.cpp -------------------------------------------------------------------------------- /C . C++/Programas/problema #1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/problema #1.cpp -------------------------------------------------------------------------------- /C . C++/Programas/problema #2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/problema #2.cpp -------------------------------------------------------------------------------- /C . C++/Programas/problema 1 project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/problema 1 project.cpp -------------------------------------------------------------------------------- /C . C++/Programas/prueba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/prueba.cpp -------------------------------------------------------------------------------- /C . C++/Programas/reto extraer numeros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/reto extraer numeros.c -------------------------------------------------------------------------------- /C . C++/Programas/space console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/space console.cpp -------------------------------------------------------------------------------- /C . C++/Programas/strstr ejemplo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/strstr ejemplo.cpp -------------------------------------------------------------------------------- /C . C++/Programas/submet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/submet.c -------------------------------------------------------------------------------- /C . C++/Programas/sucesion fibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/sucesion fibonacci.cpp -------------------------------------------------------------------------------- /C . C++/Programas/sucesiones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/sucesiones.cpp -------------------------------------------------------------------------------- /C . C++/Programas/sudoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/sudoku.cpp -------------------------------------------------------------------------------- /C . C++/Programas/synflood.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/synflood.c -------------------------------------------------------------------------------- /C . C++/Programas/tamano de un archivo c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/tamano de un archivo c.cpp -------------------------------------------------------------------------------- /C . C++/Programas/thearths api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/thearths api.c -------------------------------------------------------------------------------- /C . C++/Programas/thearths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/thearths.cpp -------------------------------------------------------------------------------- /C . C++/Programas/uso de curl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/uso de curl.cpp -------------------------------------------------------------------------------- /C . C++/Programas/uso de getch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/uso de getch.cpp -------------------------------------------------------------------------------- /C . C++/Programas/void piano notas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Programas/void piano notas.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/Dropper/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Dropper/Makefile.win -------------------------------------------------------------------------------- /C . C++/Proyectos/Dropper/Project1.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Dropper/Project1.dev -------------------------------------------------------------------------------- /C . C++/Proyectos/Dropper/Project1.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Dropper/Project1.layout -------------------------------------------------------------------------------- /C . C++/Proyectos/Dropper/Project1_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Dropper/Project1_private.h -------------------------------------------------------------------------------- /C . C++/Proyectos/Dropper/Project1_private.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Dropper/Project1_private.rc -------------------------------------------------------------------------------- /C . C++/Proyectos/Dropper/dropper_recursos.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Dropper/dropper_recursos.rc -------------------------------------------------------------------------------- /C . C++/Proyectos/Dropper/ej.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Dropper/ej.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/Dropper/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Dropper/main.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/FTP Downloader/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/FTP Downloader/Makefile.win -------------------------------------------------------------------------------- /C . C++/Proyectos/FTP Downloader/Project1.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/FTP Downloader/Project1.dev -------------------------------------------------------------------------------- /C . C++/Proyectos/FTP Downloader/local.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C . C++/Proyectos/FTP Downloader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/FTP Downloader/main.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/FTP KeyLogger/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/FTP KeyLogger/Makefile.win -------------------------------------------------------------------------------- /C . C++/Proyectos/FTP KeyLogger/Project3.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/FTP KeyLogger/Project3.dev -------------------------------------------------------------------------------- /C . C++/Proyectos/FTP KeyLogger/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/FTP KeyLogger/main.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/Gestor de archivos/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Gestor de archivos/main.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/Inyector/Inyector DLL.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Inyector/Inyector DLL.dev -------------------------------------------------------------------------------- /C . C++/Proyectos/Inyector/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Inyector/Makefile.win -------------------------------------------------------------------------------- /C . C++/Proyectos/Inyector/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Inyector/main.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/Listar Procesos/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Listar Procesos/main.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/SynFlood/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/SynFlood/Makefile.win -------------------------------------------------------------------------------- /C . C++/Proyectos/SynFlood/Project1.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/SynFlood/Project1.dev -------------------------------------------------------------------------------- /C . C++/Proyectos/SynFlood/Project1.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/SynFlood/Project1.layout -------------------------------------------------------------------------------- /C . C++/Proyectos/SynFlood/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/SynFlood/main.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/Url release/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Url release/Makefile.win -------------------------------------------------------------------------------- /C . C++/Proyectos/Url release/Project2.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Url release/Project2.dev -------------------------------------------------------------------------------- /C . C++/Proyectos/Url release/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Url release/main.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/Windows finder/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Windows finder/Makefile.win -------------------------------------------------------------------------------- /C . C++/Proyectos/Windows finder/Project1.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Windows finder/Project1.dev -------------------------------------------------------------------------------- /C . C++/Proyectos/Windows finder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/Windows finder/main.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/asin_network/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/asin_network/main.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/asin_network/src/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/asin_network/src/client.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/asin_network/src/parent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/asin_network/src/parent.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/asin_network/src/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/asin_network/src/server.cpp -------------------------------------------------------------------------------- /C . C++/Proyectos/asin_network/user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Proyectos/asin_network/user.txt -------------------------------------------------------------------------------- /C . C++/SDL/Colision de plataformas/col_map_ compilado/salida_estandar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C . C++/SDL/Librerias/SDL_run/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Librerias/SDL_run/README-SDL.txt -------------------------------------------------------------------------------- /C . C++/SDL/Librerias/SDL_run/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Librerias/SDL_run/SDL.dll -------------------------------------------------------------------------------- /C . C++/SDL/Librerias/sdl_image/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Librerias/sdl_image/README.txt -------------------------------------------------------------------------------- /C . C++/SDL/Librerias/sdl_image/SDL_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Librerias/sdl_image/SDL_image.dll -------------------------------------------------------------------------------- /C . C++/SDL/Librerias/sdl_image/jpeg62.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Librerias/sdl_image/jpeg62.dll -------------------------------------------------------------------------------- /C . C++/SDL/Librerias/sdl_image/libtiff-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Librerias/sdl_image/libtiff-3.dll -------------------------------------------------------------------------------- /C . C++/SDL/Librerias/sdl_image/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Librerias/sdl_image/zlib1.dll -------------------------------------------------------------------------------- /C . C++/SDL/Miguestg ejemplos/matriz.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Miguestg ejemplos/matriz.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Miguestg ejemplos/stdout.txt: -------------------------------------------------------------------------------- 1 | Ha tardado 1593 milisegundos en empezar el bucle 2 | 3 | -------------------------------------------------------------------------------- /C . C++/SDL/Programación de Videojuegos con SDL/Facility-War3z!.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://facility-war3z.blogspot.com/ 3 | -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Fondo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Fondo.jpg -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Grilla animada/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Grilla animada/main.c -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/Juego.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/Juego.dev -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/Makefile.win -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/Thumbs.db -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/balas.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/balas.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/coliciones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/coliciones.cpp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/csprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/csprite.cpp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/csprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/csprite.h -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/explode1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/explode1.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/explode2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/explode2.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/explode3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/explode3.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/explode4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/explode4.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/explode5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/explode5.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/explode6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/explode6.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/explode7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/explode7.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/mapa1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/mapa1.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/mapa2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/mapa2.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/mapa3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/mapa3.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/nave1 NEGRA.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/nave1 NEGRA.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/nave1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/nave1.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/nave2 NEGRA.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/nave2 NEGRA.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Juego/nave2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Juego/nave2.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Mansion del terror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Mansion del terror.cpp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Mi Pokemon.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Mi Pokemon.rar -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Mi Pokemon/Clases.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Mi Pokemon/ListaMapas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Mi Pokemon/ListaMapas.h -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Mi Pokemon/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Mi Pokemon/Makefile.win -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Mi Pokemon/Project1.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Mi Pokemon/Project1.dev -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Mi Pokemon/Tiles.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Mi Pokemon/Tiles.BMP -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Mi Pokemon/Tiles.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Mi Pokemon/Tiles.cbp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Mi Pokemon/Tiles.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Mi Pokemon/Tiles.depend -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Mi Pokemon/Tiles.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Mi Pokemon/Tiles.layout -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Mi Pokemon/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Mi Pokemon/main.cpp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/POO teclado.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/POO teclado.cpp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/SDL game/Casa1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/SDL game/Casa1.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/SDL game/M1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/SDL game/M1.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/SDL game/P1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/SDL game/P1.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/SDL game/SDL game.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/SDL game/SDL game.rar -------------------------------------------------------------------------------- /C . C++/SDL/Programas/SDL game/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/SDL game/Thumbs.db -------------------------------------------------------------------------------- /C . C++/SDL/Programas/SDL game/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/SDL game/main.cpp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/SDL game/minave.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/SDL game/minave.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Semaforo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Semaforo.cpp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Teclas/teclas.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Teclas/teclas.tar.gz -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Teclas/teclas/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Teclas/teclas/AUTHORS -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Teclas/teclas/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Teclas/teclas/COPYING -------------------------------------------------------------------------------- /C . C++/SDL/Programas/Teclas/teclas/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/Teclas/teclas/README -------------------------------------------------------------------------------- /C . C++/SDL/Programas/blabla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/blabla.cpp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/formato.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/formato.cpp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/icono.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/icono.ico -------------------------------------------------------------------------------- /C . C++/SDL/Programas/ima.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/ima.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/ima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/ima.png -------------------------------------------------------------------------------- /C . C++/SDL/Programas/juego vibora.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/juego vibora.cpp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/libreria mixer sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/libreria mixer sdl.cpp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/nave.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/nave.bmp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/prueba 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/prueba 2.cpp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/prueba1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/prueba1.cpp -------------------------------------------------------------------------------- /C . C++/SDL/Programas/rejilla.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/rejilla.jpg -------------------------------------------------------------------------------- /C . C++/SDL/Programas/sonidos .wav en sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Programas/sonidos .wav en sdl.cpp -------------------------------------------------------------------------------- /C . C++/SDL/Tutoriales/reemplaza_color.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Tutoriales/reemplaza_color.tar.gz -------------------------------------------------------------------------------- /C . C++/SDL/Tutoriales/reemplaza_color/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Tutoriales/reemplaza_color/README -------------------------------------------------------------------------------- /C . C++/SDL/Tutoriales/sdl-n2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Tutoriales/sdl-n2.pdf -------------------------------------------------------------------------------- /C . C++/SDL/Tutoriales/teclas.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Tutoriales/teclas.tar.gz -------------------------------------------------------------------------------- /C . C++/SDL/Tutoriales/teclas/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Tutoriales/teclas/AUTHORS -------------------------------------------------------------------------------- /C . C++/SDL/Tutoriales/teclas/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Tutoriales/teclas/COPYING -------------------------------------------------------------------------------- /C . C++/SDL/Tutoriales/teclas/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Tutoriales/teclas/README -------------------------------------------------------------------------------- /C . C++/SDL/Tutoriales/teclas/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Tutoriales/teclas/src/Makefile -------------------------------------------------------------------------------- /C . C++/SDL/Tutoriales/teclas/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Tutoriales/teclas/src/main.c -------------------------------------------------------------------------------- /C . C++/SDL/Tutoriales/texto_flotante.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Tutoriales/texto_flotante.tar.gz -------------------------------------------------------------------------------- /C . C++/SDL/Tutoriales/texto_flotante/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Tutoriales/texto_flotante/AUTHORS -------------------------------------------------------------------------------- /C . C++/SDL/Tutoriales/texto_flotante/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Tutoriales/texto_flotante/COPYING -------------------------------------------------------------------------------- /C . C++/SDL/Tutoriales/texto_flotante/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Tutoriales/texto_flotante/README -------------------------------------------------------------------------------- /C . C++/SDL/Tutoriales/tutorial_sdl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/SDL/Tutoriales/tutorial_sdl.pdf -------------------------------------------------------------------------------- /C . C++/STL/assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/STL/assert.cpp -------------------------------------------------------------------------------- /C . C++/STL/iterators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/STL/iterators.cpp -------------------------------------------------------------------------------- /C . C++/STL/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/STL/list.cpp -------------------------------------------------------------------------------- /C . C++/STL/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/STL/map.cpp -------------------------------------------------------------------------------- /C . C++/STL/pair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/STL/pair.cpp -------------------------------------------------------------------------------- /C . C++/STL/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/STL/set.cpp -------------------------------------------------------------------------------- /C . C++/Winbgim/Grafica lineal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/Winbgim/Grafica lineal.cpp -------------------------------------------------------------------------------- /C . C++/boost/05_Boost_Echo_Client/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/05_Boost_Echo_Client/makefile -------------------------------------------------------------------------------- /C . C++/boost/05_Poco_Echo_Client/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/05_Poco_Echo_Client/makefile -------------------------------------------------------------------------------- /C . C++/boost/allocation/allocation.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/allocation/allocation.cbp -------------------------------------------------------------------------------- /C . C++/boost/allocation/allocation.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/allocation/allocation.depend -------------------------------------------------------------------------------- /C . C++/boost/allocation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/allocation/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/asin_network_client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/asin_network_client/client.cpp -------------------------------------------------------------------------------- /C . C++/boost/asin_network_client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/asin_network_client/client.h -------------------------------------------------------------------------------- /C . C++/boost/asin_network_client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/asin_network_client/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/asin_network_client/parent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/asin_network_client/parent.h -------------------------------------------------------------------------------- /C . C++/boost/buffers/buffers.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/buffers/buffers.cbp -------------------------------------------------------------------------------- /C . C++/boost/buffers/buffers.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/buffers/buffers.depend -------------------------------------------------------------------------------- /C . C++/boost/buffers/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/buffers/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/chat_client/bin/Debug/auto.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/chat_client/bin/Debug/auto.bat -------------------------------------------------------------------------------- /C . C++/boost/chat_client/chat_client.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/chat_client/chat_client.cbp -------------------------------------------------------------------------------- /C . C++/boost/chat_client/chat_client.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/chat_client/chat_client.depend -------------------------------------------------------------------------------- /C . C++/boost/chat_client/chat_client.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/chat_client/chat_client.layout -------------------------------------------------------------------------------- /C . C++/boost/chat_client/chat_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/chat_client/chat_message.hpp -------------------------------------------------------------------------------- /C . C++/boost/chat_client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/chat_client/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/chat_server/chat_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/chat_server/chat_message.hpp -------------------------------------------------------------------------------- /C . C++/boost/chat_server/chat_server.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/chat_server/chat_server.cbp -------------------------------------------------------------------------------- /C . C++/boost/chat_server/chat_server.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/chat_server/chat_server.depend -------------------------------------------------------------------------------- /C . C++/boost/chat_server/chat_server.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/chat_server/chat_server.layout -------------------------------------------------------------------------------- /C . C++/boost/chat_server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/chat_server/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/client_broadcast/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/client_broadcast/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/client_example/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/client_example/client.cpp -------------------------------------------------------------------------------- /C . C++/boost/client_example/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/client_example/client.h -------------------------------------------------------------------------------- /C . C++/boost/client_example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/client_example/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/daytime_client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/daytime_client/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/echo/echo.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/echo/echo.cbp -------------------------------------------------------------------------------- /C . C++/boost/echo/echo.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/echo/echo.depend -------------------------------------------------------------------------------- /C . C++/boost/echo/echo.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/echo/echo.layout -------------------------------------------------------------------------------- /C . C++/boost/echo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/echo/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/echo_client/echo_client.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/echo_client/echo_client.cbp -------------------------------------------------------------------------------- /C . C++/boost/echo_client/echo_client.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/echo_client/echo_client.depend -------------------------------------------------------------------------------- /C . C++/boost/echo_client/echo_client.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/echo_client/echo_client.layout -------------------------------------------------------------------------------- /C . C++/boost/echo_client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/echo_client/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/example/example.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/example/example.cbp -------------------------------------------------------------------------------- /C . C++/boost/example/example.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/example/example.depend -------------------------------------------------------------------------------- /C . C++/boost/example/example.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/example/example.layout -------------------------------------------------------------------------------- /C . C++/boost/example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/example/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/logger_basic/basic_logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/logger_basic/basic_logger.hpp -------------------------------------------------------------------------------- /C . C++/boost/logger_basic/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/logger_basic/log.txt -------------------------------------------------------------------------------- /C . C++/boost/logger_basic/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/logger_basic/logger.hpp -------------------------------------------------------------------------------- /C . C++/boost/logger_basic/logger_basic.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/logger_basic/logger_basic.cbp -------------------------------------------------------------------------------- /C . C++/boost/logger_basic/logger_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/logger_basic/logger_service.cpp -------------------------------------------------------------------------------- /C . C++/boost/logger_basic/logger_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/logger_basic/logger_service.hpp -------------------------------------------------------------------------------- /C . C++/boost/logger_basic/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/logger_basic/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/multicaster_reciver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/multicaster_reciver/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/multicaster_sender/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/multicaster_sender/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/non_blocking/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/non_blocking/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/non_blocking/non_blocking.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/non_blocking/non_blocking.cbp -------------------------------------------------------------------------------- /C . C++/boost/server_broadcast/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/server_broadcast/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/time_timer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/time_timer/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/time_timer/time_timer.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/time_timer/time_timer.cbp -------------------------------------------------------------------------------- /C . C++/boost/time_timer/time_timer.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/time_timer/time_timer.depend -------------------------------------------------------------------------------- /C . C++/boost/timeout/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/timeout/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/timeout/timeout.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/timeout/timeout.cbp -------------------------------------------------------------------------------- /C . C++/boost/timeout_server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/timeout_server/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/timer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/timer/main.cpp -------------------------------------------------------------------------------- /C . C++/boost/timer/timer.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/C . C++/boost/timer/timer.cbp -------------------------------------------------------------------------------- /Perl Scripts/Abrir Word y escribir texto.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Abrir Word y escribir texto.pl -------------------------------------------------------------------------------- /Perl Scripts/Admin Finder.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Admin Finder.pl -------------------------------------------------------------------------------- /Perl Scripts/Cambiar Fondo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Cambiar Fondo.pl -------------------------------------------------------------------------------- /Perl Scripts/Cliente Nestafaer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Cliente Nestafaer.pl -------------------------------------------------------------------------------- /Perl Scripts/Crack MD5.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Crack MD5.pl -------------------------------------------------------------------------------- /Perl Scripts/Directorios pag.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Directorios pag.pl -------------------------------------------------------------------------------- /Perl Scripts/FTP Manager.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/FTP Manager.pl -------------------------------------------------------------------------------- /Perl Scripts/Funcino ScreenShot.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Funcino ScreenShot.pl -------------------------------------------------------------------------------- /Perl Scripts/Funcion Archivos 0.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Funcion Archivos 0.pl -------------------------------------------------------------------------------- /Perl Scripts/Funcion CMD.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Funcion CMD.pl -------------------------------------------------------------------------------- /Perl Scripts/Funcion Mouse loco.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Funcion Mouse loco.pl -------------------------------------------------------------------------------- /Perl Scripts/Funcion Ventana loca.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Funcion Ventana loca.pl -------------------------------------------------------------------------------- /Perl Scripts/Funcion archivos.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Funcion archivos.pl -------------------------------------------------------------------------------- /Perl Scripts/Get.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Get.pl -------------------------------------------------------------------------------- /Perl Scripts/Get.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Get.txt -------------------------------------------------------------------------------- /Perl Scripts/IRC bot Spammer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/IRC bot Spammer.pl -------------------------------------------------------------------------------- /Perl Scripts/Keylogger FTP.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Keylogger FTP.pl -------------------------------------------------------------------------------- /Perl Scripts/Keylogger.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Keylogger.pl -------------------------------------------------------------------------------- /Perl Scripts/PasteBin Uploader.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/PasteBin Uploader.pl -------------------------------------------------------------------------------- /Perl Scripts/Player.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Player.pl -------------------------------------------------------------------------------- /Perl Scripts/Program Manager.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Program Manager.pl -------------------------------------------------------------------------------- /Perl Scripts/Server Nestafaer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Server Nestafaer.pl -------------------------------------------------------------------------------- /Perl Scripts/Shell CGI.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Shell CGI.pl -------------------------------------------------------------------------------- /Perl Scripts/Simple Web server.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/Simple Web server.pl -------------------------------------------------------------------------------- /Perl Scripts/bot2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/bot2.pl -------------------------------------------------------------------------------- /Perl Scripts/ejemplo modulo mechsnize.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/ejemplo modulo mechsnize.pl -------------------------------------------------------------------------------- /Perl Scripts/ejemplo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/ejemplo.pl -------------------------------------------------------------------------------- /Perl Scripts/funcion reproducir.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/funcion reproducir.pl -------------------------------------------------------------------------------- /Perl Scripts/grafica.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/grafica.pl -------------------------------------------------------------------------------- /Perl Scripts/hash.txt: -------------------------------------------------------------------------------- 1 | angel 2 | puta 3 | sorra 4 | jojo 5 | xd 6 | dxx -------------------------------------------------------------------------------- /Perl Scripts/navegar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/navegar.pl -------------------------------------------------------------------------------- /Perl Scripts/prueba.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/prueba.pl -------------------------------------------------------------------------------- /Perl Scripts/scanner sql.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/scanner sql.pl -------------------------------------------------------------------------------- /Perl Scripts/scanner sql2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/scanner sql2.pl -------------------------------------------------------------------------------- /Perl Scripts/scanner vulnes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/scanner vulnes.pl -------------------------------------------------------------------------------- /Perl Scripts/script-navideno.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/script-navideno.pl -------------------------------------------------------------------------------- /Perl Scripts/socket.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/socket.pl -------------------------------------------------------------------------------- /Perl Scripts/web.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Perl Scripts/web.pl -------------------------------------------------------------------------------- /Php/Imagens Dinamicas/dinamica.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Php/Imagens Dinamicas/dinamica.php -------------------------------------------------------------------------------- /Php/Imagens Dinamicas/dinamica.php~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Php/Imagens Dinamicas/dinamica.php~ -------------------------------------------------------------------------------- /Php/Imagens Dinamicas/dinamica8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Php/Imagens Dinamicas/dinamica8.php -------------------------------------------------------------------------------- /Php/Imagens Dinamicas/imagenes/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Php/Imagens Dinamicas/imagenes/Thumbs.db -------------------------------------------------------------------------------- /Php/Imagens Dinamicas/imagenes/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Php/Imagens Dinamicas/imagenes/images.jpeg -------------------------------------------------------------------------------- /Php/Imagens Dinamicas/xD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Php/Imagens Dinamicas/xD.txt -------------------------------------------------------------------------------- /Php/Imagens Dinamicas/xd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Php/Imagens Dinamicas/xd.php -------------------------------------------------------------------------------- /Php/contador.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Php/contador.txt -------------------------------------------------------------------------------- /Php/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Php/index.html -------------------------------------------------------------------------------- /Php/index2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Php/index2.php -------------------------------------------------------------------------------- /Php/shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Php/shell.php -------------------------------------------------------------------------------- /Php/shell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Php/shell.txt -------------------------------------------------------------------------------- /Php/~$index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Php/~$index.html -------------------------------------------------------------------------------- /Python/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/Python/Thumbs.db -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0aps/Legacy-Code/HEAD/README.md --------------------------------------------------------------------------------