mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 17:19:44 -06:00
- Added message queue to DX9 plugin.
- Added plugin interface function Video_AddMessage to both plugins and to the plugin specs. - Added handling of the Video_AddMessage interface export from the core side. - Added a print on Core::Init for testing purposes (might not be the best place). git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@176 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -162,13 +162,21 @@ EXPORT BOOL CALL Video_Screenshot(TCHAR* _szFilename);
|
||||
|
||||
|
||||
// __________________________________________________________________________________________________
|
||||
// Function: Video_Screenshot
|
||||
// Purpose: This fucntion is called when you want to do a screenshot
|
||||
// input: Filename
|
||||
// output: TRUE if all was okay
|
||||
// Function: Video_EnterLoop
|
||||
// Purpose: FIXME!
|
||||
// input: none
|
||||
// output: none
|
||||
//
|
||||
EXPORT void CALL Video_EnterLoop(void);
|
||||
|
||||
// __________________________________________________________________________________________________
|
||||
// Function: Video_AddMessage
|
||||
// Purpose: Adds a message to the display queue, to be shown forthe specified time
|
||||
// input: pointer to the null-terminated string, time in milliseconds
|
||||
// output: none
|
||||
//
|
||||
EXPORT void CALL Video_AddMessage(const char* pstr, unsigned int milliseconds);
|
||||
|
||||
#undef CALL
|
||||
|
||||
#if defined(__cplusplus)
|
||||
|
Reference in New Issue
Block a user