// Copyright (c) 2020 Egor Tensin // This file is part of the "winapi-debug" project. // For details, see https://github.com/egor-tensin/winapi-debug. // Distributed under the MIT License. #include #include #include int main() { try { test_ns::print_call_stack(); } catch (const std::exception& e) { std::cerr << e.what() << '\n'; return 1; } return 0; }