1 | // Licensed to the .NET Foundation under one or more agreements. |
2 | // The .NET Foundation licenses this file to you under the MIT license. |
3 | // See the LICENSE file in the project root for more information. |
4 | |
5 | /*============================================================ |
6 | ** |
7 | ** Source: test2.h |
8 | ** |
9 | ** |
10 | |
11 | ** |
12 | **=========================================================*/ |
13 | |
14 | |
15 | const WCHAR szChildFileW[] = u"paltest_createprocessw_test2_child" ; |
16 | const WCHAR szArgs[] = {' ',0x41,' ','B',' ','C','\0'}; |
17 | const WCHAR szArg1[] = {0x41,'\0'}; |
18 | const WCHAR szArg2[] = {'B','\0'}; |
19 | const WCHAR szArg3[] = {'C','\0'}; |
20 | |
21 | const char *szTestString = "An uninteresting test string (it works though)" ; |
22 | |
23 | const DWORD EXIT_OK_CODE = 100; |
24 | const DWORD EXIT_ERR_CODE1 = 101; |
25 | const DWORD EXIT_ERR_CODE2 = 102; |
26 | const DWORD EXIT_ERR_CODE3 = 103; |
27 | const DWORD EXIT_ERR_CODE4 = 104; |
28 | const DWORD EXIT_ERR_CODE5 = 105; |
29 | |
30 | #define BUF_LEN 128 |
31 | |
32 | |