0
votes
1answer
33 views

Must GTK “callbacks” be static functions?

In all of the gtk examples I've read, callbacks are always static functions. I think I remember reading somewhere that there is a reason for that, but I can't find it now. Must GTK callback functions ...
0
votes
2answers
99 views

using c++ class member function with C function pointer

I am using a C library that implements a command shell. Custom shell commands are registered by implementing a function with the following call signature: typedef void(* ...
11
votes
2answers
201 views

template magic for wrapping C callbacks that take void* parameters?

Say I'm using a C API that lets you register callbacks that take a void* closure: void register_callback(void (*func)(void*), void *closure); In C++ it's nice to have stronger types than void* so I ...
1
vote
4answers
62 views

Why use a callback instead of a normal function call?

I'm trying to understand callbacks, and do get the idea, but do not understand why it is really needed. Specifically, what added benefit does it provide over a normal function call? I'm looking at ...
0
votes
1answer
38 views

Clarification on concept of callbacks and function pointers in c

I found this line on wikipedia about function callbacks, "In computer programming, a callback is a reference to executable code, or a piece of executable code, that is passed as an argument to other ...
0
votes
1answer
21 views

Submit array with GTK callback function

I have a lot of check buttons (cbuttons[]) in my main function. After click of the install button, the array with the check buttons are commited. int main(int argc, char *argv[]) { GtkWidget ...
6
votes
3answers
81 views

When to Use a Callback function?

When do you use a callback function? I know how they work, I have seen them in use and I have used them myself many times. An example from the C world would be libcurl which relies on callbacks for ...
2
votes
1answer
113 views

C call back function from assembly (x86) and process switching

This code is for my undergraduate OS course. I am trying to call a function on the same stack of new_sp and then return to whatever new_sp was doing. It is not working and I'm not even sure how to ...
3
votes
2answers
98 views

Advantage of function pointers over flags [closed]

Lets say for eg., I have a function called int compute ( int x1, int x2, int (* op) (int, int) ), which takes as an argument a function pointer to a function that does some arithmetic operation int ...
6
votes
3answers
132 views

Is it safe to pass an intptr_t to a function that expects an int?

More specifically, if I have the following function pointer type: typedef void (*callback_type) (intptr_t context, void* buffer, size_t count); can I safely and without "undefined behavior" do: ...
1
vote
2answers
75 views

Why does a function returning float not work with void* callback?

In the code below, why does int work but not float? Results are below. voidptr.c : #include <stdio.h> typedef void* (*Fn) (); int Fun() { return 5; } float fFun() { return 5.0; } ...
1
vote
3answers
87 views

When to know if a function is a callback?

I took the code Hello World In GTK from this link. There it uses a number of callback functions but for each callback function say static void hello( GtkWidget *widget,gpointer data ) When It uses ...
2
votes
3answers
269 views

ObjC/C/C++ high resolution timer with callback

I was sure this question has been asked before so I did of course use the search function to check if there's an answer solving my issue. However, all I could find were a lot of answers on measuring ...
0
votes
1answer
96 views

How to create a CBTHook in jni and then call a java function in the callback function?

Update (23/02/13): Tested the Hook separatedly, it works. The problem was that you can't use printf in a .dll, unless you associate a console with it. I instead replaced every printf with fprintf and ...
1
vote
3answers
105 views

changing value of int defined in struct

I defined a struct Board with an int n, the value of which is a small integer. Before this method is called by the gtk signal "clicked", board->n has the correct value. However, when calling this ...
1
vote
2answers
82 views

Best approach to continuously scan for a string in a streaming buffer

I have this situation where my function continuously receive data of various length. The data can be anything. I want to find the best way I to hunt for particular string in this data. The solution ...
1
vote
1answer
115 views

can I call my callback function from opengl's display

I am trying to call a callback function from void display(void){ my_draw(&here_is_the_actual_drawing); } void here_is_the_actual_drawing(){ glVertex2f(x,y); } in main the ...
0
votes
1answer
64 views

OpenSSL identifying cookie verify callbacks with DTLS sessions/connections in multiple threads

I'm having a bit of trouble with my cookie generation/verification callbacks in a multithreaded server (connection per thread). The DTLS stuff requires these callbacks as far as I can tell; my worry ...
0
votes
1answer
96 views

ios objC call back calling method

Im using System sound services, to play a sound I have recorder with the microphone, is working fine, and using a callback when the sound stops, //callback pa saber termina ...
7
votes
1answer
280 views

Write a C wrapper around C++ classes with C++ callbacks

I need to wrap a C++ library with C. This C++ library defines callback functions. For example: // from C++ library typedef X CallbackFn(Y y); // X and Y are classes class Z { ...
2
votes
0answers
334 views

Passing C++/CLI Class Method as C function pointer

I have a third-party C library that provides this header: //CLibrary.h #include <Windows.h> #include <process.h> typedef void (WINAPI *CLibEventCallback)(int event, void *data); ...
2
votes
2answers
187 views

Is there a way to wrap an ObjectiveC block into function pointer?

I have to provide a C-style callback for a specific C library in an iOS app. The callback has no void *userData or something similar. So I am not able to loop in a context. I'd like to avoid ...
0
votes
3answers
95 views

Using callback defined in different file gives “Undefined reference”

I am trying to use a callback function. This has worked fine when the caller and the called function were in the same file. I have lately decided to make the called function part of a library, so I ...
0
votes
1answer
110 views

Variable arguments for call-back functions

I have a tree-traversal API that looks like this treeTraverse(Tree *ptr, (void *) call_back(Tree *ptr)); This API traverses the tree and calls the call back function with each entry. I want to ...
1
vote
3answers
138 views

program crashing with segmentation fault while calling a callback function

My program crashes with Segmentation fault while calling a callback function randomly. When I analyzed the core the callback function address is 0x20202020. Program terminated with signal 11, ...
3
votes
1answer
217 views

Python code calls C library that create OS threads, which eventually call Python callbacks

If the one and only Python interpreter is in the middle of executing a bytecode when the OS dispatches another thread, which calls a Python callback - what happens? Am I right to be concerned about ...
1
vote
1answer
213 views

Struct passed by value, corrupted during C -> C++ callback function (gcc 4.1)

The scenario is this. I am seeing a struct get corrupted when it is passed by value into a callback function, from a C API to a C++ one (via a static method). Library A: C-based API, built via gcc ...
2
votes
1answer
182 views

How to create own events in C/C++?

How should i create my own Events (This includes the code to bind the necessary callback) in c/C++ programming? It is directly available in Java.
1
vote
1answer
474 views

pass member function from C++ CLI to native C callback

I've got problems passing a member function of a C++ CLI class to a native C callback from a library. To be precise its the Teamspeak 3 SDK. You can pass a non member function using the following ...
1
vote
2answers
188 views

Mixing Objective-C with C and code organization

I'm working on a desktop application that watch folders using the fileevent api, so basically this is my code : #import "PNAppDelegate.h" void callback( ConstFSEventStreamRef ...
0
votes
1answer
95 views

Unable to stop python callbacks from a python C extension

I'm trying to wrap a C++ camera frame acquisition library into Python. I'm having problems with the callback function. I call a python function from a C function with the following code: ...
-1
votes
1answer
78 views

How to run code in back end with click on button?What is the function to do this in gtk+?

I have created a window in gtk which is displayind info. about my project and it has a next button.now i want that on clicking this " next" button my algorithm should run i.e. g++ -o output ...
0
votes
2answers
73 views

Function to get stored callback

Suppose I have a variable, that stores the callback. void* (*function)(int, double); Now I would like to create a function, that will return this callback. I do not want the user to access the ...
0
votes
2answers
80 views

c callbacks functions for numerical optimization

My application library needs to call an optimization routine: err = optim(int n, double *x, double *f, void *obj) The routine will then call the objective function to request objective function ...
0
votes
3answers
571 views

Registering a callback function in C

I am some Linux kernel space code. I want an application in user space to be able to register a callback function in the kernel space code by calling a function in the kernel space code and passing ...
0
votes
1answer
1k views

C function pointers error storage class specified for parameter `type name'

I currently have a piece of code that I am working on using function pointers as callbacks. I am having trouble with an error from gcc stating "storage class specified for parameter `type name'" The ...
4
votes
2answers
543 views

Interop causes Unity to crash

is it possible at all to make C/C++ function callback into Unity scripts, provided that you can create a new thread from the scripts? I tried but Unity crashes as soon as the scripts get executed. I ...
0
votes
3answers
166 views

In C Why function pointers are better suited in function call backs?

I know function call back is embedding another function pointer in the call of another function like this: Function Declaration: function_call_back(int x, int y, void (*functonPtr)(int x, char y , ...
3
votes
1answer
919 views

AWS lib3s C/C++ Library Sample Code / Tutorials

I have downloaded and looked over the code for libs3, a library written for C/C++ that interacts with Amazon S3. This library uses a couple of concepts I am not completely comfortable with, so I am ...
1
vote
3answers
971 views

What is the use of callback function in C++ ?

Hi I am very curious to know what is the usage of callback functions. Can anyone kindly explain it with a simple example please. In my project I observe a particular CallBack function is ...
2
votes
4answers
153 views

catch exception on pure C without try-catch mechanism

I need to create a dump file when there is an exception. Is it possible to do so without using __try{...} and __except(e){...} ? Is there a way to create a callback function or register an action ...
0
votes
1answer
85 views

ZwQueryKey with KeyNameInformation alternative for XP?

I'm writing a kernel driver which registers registry routines callback through CmRegisterCallbackEx. I want to get key full path and print it through DbgPrint. In the callback, I successfully query ...
0
votes
0answers
95 views

Convert kernel registry path to standard one

I'm writing a kernel driver which registers registry routines callback through CmRegisterCallbackEx. I want to get key full path and print it through DbgPrint. In the callback, I successfully query ...
0
votes
1answer
227 views

Declaring char array in Ruby FFI

I have the following C code: typedef void (*mycallback) (char buf[128]); void take_callback(mycallback cb) { } I've written the equivalent Ruby FFI declarations as below (following advice for ...
6
votes
0answers
808 views

Libev, How to pass arguments to relevant callbacks

I'm trapped in a situation of argument passing in libev. Usually, libev receives packages in a function like *receive_callback*, that's OK, but in practice, we need to dispatch a relative ...
0
votes
2answers
48 views

Passign code as a function parameter instead of declaring a callback

I think that some newer languages like JS can do this natively, but I forget the term for it (make a "temporary" function in-line just to pass as a callback) What I want to do is ... I'm writing ...
0
votes
1answer
502 views

How to talk between a user callback and a view?

I am trying to figure out how to update of UI elements (UIImageViews) based upon the content of user event callbacks that are invoked when a user event is passed during MIDI playback. More ...
0
votes
1answer
358 views

I want to hold a filled rectangle in a window, but failed. Please tell me why.

The code can be built and works, but it does not work as I want. I want to use the mouse to draw a rectangle in a window. When the button is pressed, it starts to draw. When the button is released, ...
0
votes
4answers
322 views

Application of Callback Function

I want to know where callback functions are actually used ? And is there a way to implement callback function ( other than using function pointer ) in C/C++ ? Please explain the following line - ...
1
vote
3answers
313 views

C Hook/Callback System

I've been trying to figure out how to implement a hooks system in C. Can anyone give me some pointers or examples?

1 2 3