ReactOS 0.4.15-dev-7934-g1dc8d80
dllexport_test_dll2.c File Reference

Go to the source code of this file.

Functions

int __cdecl CdeclFunc0 (void)
 
int __cdecl CdeclFunc1 (char *p1)
 
int __stdcall StdcallFunc0 (void)
 
int __stdcall StdcallFunc1 (char *p1)
 
int __stdcall DecoratedStdcallFunc1 (char *p1)
 
int __fastcall FastcallFunc0 (void)
 
int __fastcall FastcallFunc1 (char *p1)
 
int __fastcall DecoratedFastcallFunc1 (char *p1)
 

Variables

int DataItem1 = 0x10051
 
int DataItem2 = 0x10052
 

Function Documentation

◆ CdeclFunc0()

int __cdecl CdeclFunc0 ( void  )

Definition at line 2 of file dllexport_test_dll2.c.

3{
4 return 0x10000;
5}

◆ CdeclFunc1()

int __cdecl CdeclFunc1 ( char p1)

Definition at line 7 of file dllexport_test_dll2.c.

8{
9 return 0x10001;
10}

◆ DecoratedFastcallFunc1()

int __fastcall DecoratedFastcallFunc1 ( char p1)

Definition at line 37 of file dllexport_test_dll2.c.

38{
39 return 0x10041;
40}

◆ DecoratedStdcallFunc1()

int __stdcall DecoratedStdcallFunc1 ( char p1)

Definition at line 22 of file dllexport_test_dll2.c.

23{
24 return 0x10021;
25}

◆ FastcallFunc0()

int __fastcall FastcallFunc0 ( void  )

Definition at line 27 of file dllexport_test_dll2.c.

28{
29 return 0x10030;
30}

◆ FastcallFunc1()

int __fastcall FastcallFunc1 ( char p1)

Definition at line 32 of file dllexport_test_dll2.c.

33{
34 return 0x10031;
35}

◆ StdcallFunc0()

int __stdcall StdcallFunc0 ( void  )

Definition at line 12 of file dllexport_test_dll2.c.

13{
14 return 0x10010;
15}

◆ StdcallFunc1()

int __stdcall StdcallFunc1 ( char p1)

Definition at line 17 of file dllexport_test_dll2.c.

18{
19 return 0x10011;
20}

Variable Documentation

◆ DataItem1

int DataItem1 = 0x10051

Definition at line 42 of file dllexport_test_dll2.c.

◆ DataItem2

int DataItem2 = 0x10052

Definition at line 43 of file dllexport_test_dll2.c.