1 /* 2 * renderer-msvc.h 3 * MSVC library syntax renderer header 4 * 5 * Copyright (c) 2017 pkgconf authors (see AUTHORS). 6 * 7 * Permission to use, copy, modify, and/or distribute this software for any 8 * purpose with or without fee is hereby granted, provided that the above 9 * copyright notice and this permission notice appear in all copies. 10 * 11 * This software is provided 'as is' and without any warranty, express or 12 * implied. In no event shall the authors be liable for any damages arising 13 * from the use of this software. 14 */ 15 16 #ifndef RENDERER_MSVC_H 17 #define RENDERER_MSVC_H 18 19 #include <libpkgconf/libpkgconf.h> 20 21 const pkgconf_fragment_render_ops_t *msvc_renderer_get(void); 22 23 #endif 24