1 // Copyright (C) 2021 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) 2 // This Source Code Form is subject to the terms of the Mozilla Public 3 // License, v. 2.0. If a copy of the MPL was not distributed with this 4 // file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 6 #ifndef SUSPEND_RESUME_TEST_ 7 #define SUSPEND_RESUME_TEST_ 8 9 #define TEST_SERVICE 0x6311 10 #define TEST_INSTANCE 0x0002 11 #define TEST_MAJOR 0x01 12 #define TEST_MINOR 0x0 13 14 #define TEST_EVENT 0x8005 15 #define TEST_EVENTGROUP 0x0002 16 17 #define TEST_METHOD 0x0001 18 19 #define TEST_SUSPEND 0x00 20 #define TEST_STOP 0xFF 21 22 #endif // SUSPEND_RESUME_TEST_ 23