0
votes
7answers
147 views
Passing Void type parameter in C
Hello there I am working on an assignment in C where I need to pass in an unknown type of parameter into a function.
For example suppose I have the following:
int changeCount(vo …
3
votes
3answers
219 views
void pointers: difference between C and C++
I'm trying to understand the differences between C and C++ with regards to void pointers. the following compiles in C but not C++ (all compilations done with gcc/g++ -ansi -pedanti …
3
votes
4answers
144 views
C: deep copying - structure with a void pointer
Hi,
I've got a following struct
struct teststruct
{
int *a;
void *data;
};
Is it possible to do a deep copy of structure which contains a void pointer? I assume that I ca …
0
votes
10answers
228 views
Find out Type of C++ Void Pointer
Hello, I have a small question: how do I find out what type a C++ pointer is?
I often use a small function in my console programs to gather input, which looks something like this: …
1
vote
2answers
97 views
pointer arithmetic and the C# compiler
For the purpose of learning I recently looked at an existing assembly (using Reflector) that uses Win32 WriteFile. The implementation is:
Write(IntPtr handleFile, void* bufferData …
0
votes
1answer
55 views
Implementing Win32 FileWrite
[DllImport("kernel32.dll", SetLastError=true)]
public static extern unsafe bool WriteFile(IntPtr hFile, void* lpBuffer, uint nNumberOfBytesToWrite, out uint lpNumberOfBytesWrit …
1
vote
9answers
301 views
error: cast from ‘void*’ to ‘int’ loses precision
I have a function with prototype void* myFcn(void* arg) which is used as the starting point for a pthread. I need to convert the argument to an int for later use:
int x = (int)ar …
0
votes
3answers
126 views
error: invalid conversion from ‘void (*)(…)’ to ‘void (*)()’
Hi, having this problem on Mac with gcc 4.0.1 build 5370, XCode 2.5.
The code snippet is:
there is a declared function, the second parameter cause the problem:
void ffi_call(ffi_ …
3
votes
5answers
493 views
objective c difference between id and void *
In objective C what is the difference between id and void *? Thanks!!
2
votes
5answers
289 views
If I have a void pointer, how do I put an int into it?
I have an array of arbitrary values, so I have defined it as an array of void pointers, so I can point to any kind of information (like int, character arrays, etc). However, how do …
1
vote
7answers
286 views
C: Function returning via void *
Coming from Java I'm confused by the use of Void allowing a return value in the following:
void *emalloc(size_t s) {
void *result = malloc(s);
if (NULL == result) {
…
6
votes
11answers
836 views
Is it safe to delete a void pointer?
Suppose I have the following code:
void* my_alloc (size_t size)
{
return new char [size];
}
void my_free (void* ptr)
{
delete [] ptr;
}
Is this safe? Or must ptr be cast …
1
vote
2answers
187 views
void* to Object^ in C++/CLI
I am working on wrapping a large number of .h and .lib files from native C++ to Managed C++ for eventual use as a referenced .dll in C#.
Some of the native C++ functions have a re …
0
votes
7answers
758 views
Casting void pointers, depending on data (C++)
Basically what I want to do is, depending on the some variable, to cast a void pointer into a different datatype. For example (the 'cast' variable is just something in order to ge …
4
votes
6answers
2k views
Concept of void pointer in C programming…
Is it possible to dereference the void pointer without type-casting in C programming language?
Also, is there is any way of generalizing a function which can receive a pointer and …
