2
votes
5answers
118 views
Copying arrays of structs in C
Hi there,
It's been a long since I don't use C language, and this is driving me crazy. I have an array of structs, and I need to create a function which will copy one array to ano …
1
vote
1answer
100 views
c++: Initialize struct with one array containing all arguments
Hi,
I am currently working on a small tokenizer template function which also casts the tokens to different objects. this works really nice aslong as all the strucs I cast to have …
0
votes
0answers
54 views
arrays of structs need advice
I made an array of structs to represent map data that gets drawn; however I didn't double check it till it was too late: when I load in a new map I get either an "out of memory exc …
1
vote
5answers
442 views
C initialize array within structure
I want to have an variable-length array contained within a structure, but am having trouble initializing it correctly.
struct Grid {
int rows;
int cols;
int grid[];
}
int m …
0
votes
2answers
108 views
typedefs of structs not seeming to go through in header files?
I'm having some trouble with some struct typedef declarations in a header file not seeming to go through to my implementation file.
Specifically, I have the following types define …
0
votes
3answers
118 views
A deep struct-like Equals() for .NET classes?
Given two objected that do not contain reference loops within them, do you know a method that tests their equality in a "generic" way (through reflection)?
I basically want the sa …
1
vote
3answers
91 views
Handling input into struct elements with array
I'm doing an assignment that involves structs.
You are to make a struct with three variables and declare 3 instances of that struct.
The program will then ask for the user to inpu …
0
votes
2answers
34 views
Understanding XML-RPC param possibilities, especially recursion of values
One thing I've noticed with all the XML-RPC examples out there, including the spec itself, is there is no detailed example of a schema using recursive (param) values. It is hard to …
0
votes
2answers
221 views
C++ How to loop through a list of structs and access their properties
I know I can loop through a list of strings like this:
list<string>::iterator Iterator;
for(Iterator = AllData.begin();
Iterator != AllData.end();
Iterator++)
{
c …
0
votes
2answers
155 views
sending structs over sockets
Hi,
i am using vb.net and i would to send some structs to a C++ tcp server.
The problem is the structs i am sending might contain other structs.
Struct{
uint length;
byte …
1
vote
2answers
188 views
How do I pass a struct from an unmanaged C++ program to a C# program?
This is my second post.
Here is what I am trying to do: Call an unmanaged c++ program from c#, passing in a array of structs from the c# program and return a updated version of t …
0
votes
2answers
632 views
Reading data from file into array of structs C++
I have a sample txt file and want to read the contents of the file into an array of structs.
My persons.txt file contains 5 arbitrary nos one on each line.
7
6
4
3
2
My program …
0
votes
2answers
145 views
How do I get the FieldInfo of an array field?
I'm trying to get the field info of an array value from within a struct. So far I have the following, but I dont see how to get the infomration I want.
[StructLayout(LayoutKi …
1
vote
3answers
197 views
Pointer to struct within the nested structs
Hello all,
I'm trying to run the following code(in gcc 4.3 on fedora 11 i586 ):
#include
#include
#include …
1
vote
2answers
56 views
(.net) Is there any intrinsic difference between .net Explicit structs and c++ unions?
That is the question. Is there anything you can do with c++ unions that you can't with c# Explicit structs?
