This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
MOKA
/
scbc_repos
Obserwuj
3
Polub
0
Forkuj
0
Pliki
Problemy
0
Oczekujące zmiany
0
Wiki
Drzewo:
a4d9d81d6e
Gałęzie
Tagi
master
scbc_repos
/
DLLInjection
/
LoadMemoryDLL-master
/
example
/
SampleDLL
/
SampleDLL.cpp
SampleDLL.cpp
106 B
Historia
Czysty
1
2
3
4
5
6
7
8
9
10
#include "SampleDLL.h"
extern "C" {
SAMPLEDLL_API int addNumbers(int a, int b)
{
return a + b;
}
}