Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / General / January 2005

Tip: Looking for answers? Try searching our database.

callback function problem

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Tomaz Rotovnik - 13 Jan 2005 07:16 GMT
Hi

I created very simple dll (vc++) which has three functions (start, stop and
initialization). it starts capturing sound from soundblaster and when the
buffer is filled with the data, dll calls VB calback function (passed with
initialization) and passes the buffer size (integer type). First I have
some problems with __stdcall declaration in VC dll, but I think I solved
that
problem. Callback function runs in separated thread under main dll thread.

Declaration of initialization of callback function looks like this:

__declspec(dllexport) int __stdcall RecToR_Init_Cap(void (__stdcall
*tmp)(int_4 size));

IN VB:
Public Delegate Sub Callback(ByVal size As Int32)

Public Declare Function RecToR_Init_Cap Lib "RecToR_Cap_TR.dll" (ByVal
CalBckFunc As Callback) As Int32

"Private Sub Button1_Click" event in VB:

Dim cb As Callback
cb = AddressOf CallBackFunc
Success = RecToR_Init_Cap(cb)

Public Sub CallBackFunc(ByVal size As Int32)
TextBox1.Text = size & vbCrLf
End Sub

When I run the application, the callback function is called 50 times and
then the application crashes (it should work until stop is called):

"An unhandled exception of type
'System.Runtime.InteropServices.SEHException' occurred in Unknown Module.
Additional information: External component has thrown an exception.
An exception 'System.NullReferenceException' has occured in..."

I think I override stack pointer. How can I trace down the problem?

From Microsoft articles I get information that I cannot call callbacks from
spawned threads within my DLL.

Is it possible to overcome this problem?

Thanks for any idea

Tomaz Rotovnik
Mattias Sj?gren - 13 Jan 2005 09:50 GMT
Tomaz,

>I think I override stack pointer. How can I trace down the problem?

I think its a GC problem.

http://www.dotnetinterop.com/faq/?q=DelegateGC

Mattias

Signature

Mattias Sjögren [MVP]  mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.

Tomaz Rotovnik - 13 Jan 2005 11:57 GMT
Thank you for your answer. It was the right direction.

I just put the declaration of callback variable outside the
click button event.

Tomaz

> Tomaz,
>
[quoted text clipped - 5 lines]
>
> Mattias
Diego - 31 Jan 2005 13:49 GMT
Hello Tomaz My name is Diego and I 'm from Italy. sorry not to have hints for
your problem but as your target applicaion is similiar to mine I woul like to
ask your help.
I 'm developing an application of voice over ip to send and receive sound.
I need to know how to create datagrams of voice through a buffer listening
from my audio device. It would be suitable for example capturing 2048 bytes
of wav format at a time and then send it trough a socket client using
callback as you know.
can you tell me how to capture voice from audio device in packets to buffer
away over IP?. Regards and best in busineess.
Diego. at  burlando@dmm888.com  

> Hi
>
[quoted text clipped - 45 lines]
>
> Tomaz Rotovnik

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.