1 /*
2  * PROJECT:         ReactOS API tests
3  * LICENSE:         LGPLv2.1+ - See COPYING.LIB in the top level directory
4  * PURPOSE:         Helper declarations for DLL construction/destruction test
5  * PROGRAMMER:      Thomas Faber <thomas.faber@reactos.org>
6  */
7 
8 #pragma once
9 
10 struct counter_values
11 {
12     int m_uninit_at_startup;
13     int m_uninit;
14     int m_counter;
15     int static_construct_counter_at_startup;
16     int static_construct_counter;
17     int dtor_counter_at_detach;
18     int dtor_counter;
19 };
20 
21 typedef
22 void
23 WINAPI
24 SET_COUNTER_VALUES_POINTER(
25     _Out_ struct counter_values *pcv);
26