This website works better with JavaScript
Inicio
Explorar
Axuda
Rexistro
Iniciar sesión
Reverse
/
repos_assist
Seguir
2
Destacar
0
Fork
0
Ficheiros
Incidencias
0
Pull Requests
0
Wiki
Árbore:
598711bbe8
Ramas
Etiquetas
master
repos_assist
/
DLLInjection
/
LoadMemoryDLL-master
/
example
/
SampleDLL
/
SampleDLL.cpp
SampleDLL.cpp
121 B
Histórico
Raw
1
2
3
4
5
6
7
8
9
#include "SampleDLL.h"
extern "C"
{
SAMPLEDLL_API int addNumbers(int a, int b)
{
return a + b;
}
}