@@ -95,7 +95,7 @@ struct StackTrace_SimpleContext
9595extern "C" {
9696#endif // __cplusplus
9797
98- HRESULT CALLBACK _EFN_StackTrace (
98+ DLLEXPORT HRESULT CALLBACK _EFN_StackTrace (
9999 PDEBUG_CLIENT client ,
100100 __out_ecount (* puiTextLength ) WCHAR wszTextOut [],
101101 size_t * puiTextLength ,
@@ -119,7 +119,7 @@ HRESULT CALLBACK _EFN_StackTrace(
119119// cbString - number of characters available in the string buffer.
120120//
121121// The output will be truncated of cbString is not long enough for the full stack trace.
122- HRESULT CALLBACK _EFN_GetManagedExcepStack (
122+ DLLEXPORT HRESULT CALLBACK _EFN_GetManagedExcepStack (
123123 PDEBUG_CLIENT client ,
124124 ULONG64 StackObjAddr ,
125125 __out_ecount (cbString ) PSTR szStackString ,
@@ -128,7 +128,7 @@ HRESULT CALLBACK _EFN_GetManagedExcepStack(
128128
129129// _EFN_GetManagedExcepStackW - same as _EFN_GetManagedExcepStack, but returns
130130// the stack as a wide string.
131- HRESULT CALLBACK _EFN_GetManagedExcepStackW (
131+ DLLEXPORT HRESULT CALLBACK _EFN_GetManagedExcepStackW (
132132 PDEBUG_CLIENT client ,
133133 ULONG64 StackObjAddr ,
134134 __out_ecount (cchString ) PWSTR wszStackString ,
@@ -141,7 +141,7 @@ HRESULT CALLBACK _EFN_GetManagedExcepStackW(
141141// szName - a buffer to be filled with the full type name
142142// cbName - the number of characters available in the buffer
143143//
144- HRESULT CALLBACK _EFN_GetManagedObjectName (
144+ DLLEXPORT HRESULT CALLBACK _EFN_GetManagedObjectName (
145145 PDEBUG_CLIENT client ,
146146 ULONG64 objAddr ,
147147 __out_ecount (cbName ) PSTR szName ,
@@ -158,7 +158,7 @@ HRESULT CALLBACK _EFN_GetManagedObjectName(
158158// pOffset - the offset from objAddr to the field. This parameter can be NULL.
159159//
160160// At least one of pValue and pOffset must be non-NULL.
161- HRESULT CALLBACK _EFN_GetManagedObjectFieldInfo (
161+ DLLEXPORT HRESULT CALLBACK _EFN_GetManagedObjectFieldInfo (
162162 PDEBUG_CLIENT client ,
163163 ULONG64 objAddr ,
164164 __out_ecount (mdNameLen ) PSTR szFieldName ,
0 commit comments