diff --git a/test/targetapp/targetapp.cpp b/test/targetapp/targetapp.cpp index 0057b6a..3b985a7 100644 --- a/test/targetapp/targetapp.cpp +++ b/test/targetapp/targetapp.cpp @@ -76,6 +76,7 @@ structTest g_testArray[2] = { { 0, 500, true, 1 }, { 2, 1500, false, 1 } }; structTest *g_structTestPtr = &g_structTest; structTest **g_structTestPtrPtr = &g_structTestPtr; + char helloStr[] = "Hello"; wchar_t helloWStr[] = L"Hello"; @@ -159,6 +160,8 @@ struct listStruct1; static listStruct1 *g_listHead1 = NULL; +void* g_voidPtr = g_listHead1; + struct listStruct1 { int num; struct listStruct1 *next;