ReactOS 0.4.15-dev-7924-g5949c20
dllexport_test_dll1.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)
 
int __stdcall ExportByOrdinal1 (char *p1)
 

Variables

int DataItem1 = 0x51
 
int DataItem2 = 0x52
 

Function Documentation

◆ CdeclFunc0()

int __cdecl CdeclFunc0 ( void  )

Definition at line 2 of file dllexport_test_dll1.c.

3{
4 return 0x0;
5}

◆ CdeclFunc1()

int __cdecl CdeclFunc1 ( char p1)

Definition at line 7 of file dllexport_test_dll1.c.

8{
9 return 0x1;
10}

◆ DecoratedFastcallFunc1()

int __fastcall DecoratedFastcallFunc1 ( char p1)

Definition at line 37 of file dllexport_test_dll1.c.

38{
39 return 0x42;
40}

◆ DecoratedStdcallFunc1()

int __stdcall DecoratedStdcallFunc1 ( char p1)

Definition at line 22 of file dllexport_test_dll1.c.

23{
24 return 0x21;
25}

◆ ExportByOrdinal1()

int __stdcall ExportByOrdinal1 ( char p1)

Definition at line 42 of file dllexport_test_dll1.c.

43{
44 return 0x11;
45}

◆ FastcallFunc0()

int __fastcall FastcallFunc0 ( void  )

Definition at line 27 of file dllexport_test_dll1.c.

28{
29 return 0x30;
30}

◆ FastcallFunc1()

int __fastcall FastcallFunc1 ( char p1)

Definition at line 32 of file dllexport_test_dll1.c.

33{
34 return 0x31;
35}

◆ StdcallFunc0()

int __stdcall StdcallFunc0 ( void  )

Definition at line 12 of file dllexport_test_dll1.c.

13{
14 return 0x10;
15}

◆ StdcallFunc1()

int __stdcall StdcallFunc1 ( char p1)

Definition at line 17 of file dllexport_test_dll1.c.

18{
19 return 0x11;
20}

Variable Documentation

◆ DataItem1

int DataItem1 = 0x51

Definition at line 47 of file dllexport_test_dll1.c.

◆ DataItem2

int DataItem2 = 0x52

Definition at line 48 of file dllexport_test_dll1.c.