This website works better with JavaScript
Domů
Procházet
Nápověda
Registrovat se
Přihlásit se
Reverse
/
repos_assist
Sledovat
2
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Pull Requesty
0
Wiki
Strom:
598711bbe8
Větve
Značky
master
repos_assist
/
DLLInjection
/
LoadMemoryDLL-master
/
example
/
SampleDLL
/
SampleDLL.cpp
SampleDLL.cpp
121 B
Historie
Surový
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;
}
}