Official BS.Player forums  

Go Back   Official BS.Player forums > Main forum > General Talk And Support

General Talk And Support General talk and peer-to-peer support about BS.Player and other video and audio multimedia players.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 22nd December 2005
Junior Member
BS.Player Newbie
 
Join Date: Dec 2005
Posts: 3
Rep Power: 0
AlexR1973 is an unknown quantity at this point
Default BSPlayer crushes when get the requsts from another program

Hi guys!
I wrote a simple plugin for LCD Smartie that shows some information from BSPlayer on LCD/VFD screen. When BSPLayer stared first everything is OK. But when LCD Smartie started first and sends messages to BSPlayer during startup - BSPlayer crushes every time. What I am doing wrong and how I can avoid these crushes? Please take a look at the code:
Code:
extern "C" DLLEXPORT char * __stdcall function2(char *param1, char *param2)
{ 
    static char outbuf[100];

	HWND bsp_hand; 
	if ( (bsp_hand = FindWindow("BSPlayer",NULL)) !=0 )
	{ 
		int iStatus = SendMessage(bsp_hand,WM_BSP_CMD, BSP_GetStatus, 0);
		switch (iStatus)
		{
		case 0:
			sprintf (outbuf, "Stopped");
			break;
		case 1:
			sprintf (outbuf, "Paused");
			break;
		case 2:
			sprintf (outbuf, "Playing");
			break;
		case 4:
			sprintf (outbuf, "No movie open");
			break;
		}
	}
	else
	{
		strcpy (outbuf, "BSPlayer is not running.");
	}
	return outbuf;
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiTweet this Post!Spurl this Post!Reddit! MySpace
Reply With Quote
  #2 (permalink)  
Old 11th January 2006
Junior Member
BS.Player Newbie
 
Join Date: Dec 2005
Posts: 3
Rep Power: 0
AlexR1973 is an unknown quantity at this point
Default

bump.
Didn't get any responces for this bug. Still need a solution.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiTweet this Post!Spurl this Post!Reddit! MySpace
Reply With Quote
Reply

Tags
crushes, program, requsts

Thread Tools
Display Modes

Posting Rules


All times are GMT +1. The time now is 07:45 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.5.2
Ad Management plugin by RedTyger

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19