wined3d: Pass a wined3d_device_context to wined3d_cs_emit_set_index_buffer().
[wine.git] / dlls / dpnet / tests / dpnet_test.h
blob1de25590bdc06507ea85292cd59168280a166d58
1 /*
2 * Copyright 2016 Alistair Leslie-Hughes
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 #ifndef __DPNET_PRIVATE_H__
19 #define __DPNET_PRIVATE_H__
21 enum firewall_op
23 APP_ADD,
24 APP_REMOVE
27 extern BOOL is_firewall_enabled(void) DECLSPEC_HIDDEN;
28 extern BOOL is_process_elevated(void) DECLSPEC_HIDDEN;
29 extern HRESULT set_firewall( enum firewall_op op ) DECLSPEC_HIDDEN;
30 extern BOOL is_stub_dll(const char *filename) DECLSPEC_HIDDEN;
32 #endif