MASM structures problem
-
Hello, I want to create a nested array of structures in masm 7 and I can't do that ... my code is : ProcList struc processtype BYTE ? exefile BYTE 30 dup (?) titlebar BYTE 70 dup (?) ora DWORD ? minute DWORD ? procent DWORD ? handle DWORD ? ProcList ends Image struc bufferImg DWORD ? bufferImgSize DWORD ? Image ends ClientsList struc processes ProcList 50 dup () ImageList Image nume BYTE 32 dup (?) ip BYTE 16 dup (?) socket DWORD ? bufferDate DWORD ? sizeofBuffer DWORD ? state DWORD ? ClientsList ends and now I try to create an array of "ClientsList" objects .... eyeConClients ClientsList 10 dup ({}) the problem is at the item "processes" in ClientsList structure ... if I declare it without "dup" (not an array!) like : processes ProcList it works fine ... when I put there "dup" it gets an error <<< A2177 nested structures improperly initialized >>> .... ! please give me any ideas if you know ... please ..... thank you !!!!