Skip to content

Commit

Permalink
Added stubs for missing Windows platform functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 30, 2009
1 parent f0c59dc commit 77541c2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions platform_windows.c
Expand Up @@ -499,6 +499,22 @@ boolean MojoPlatform_launchBrowser(const char *url)
} // MojoPlatform_launchBrowser


boolean MojoPlatform_installDesktopMenuItem(const char *data)
{
// !!! FIXME: write me.
STUBBED("desktop menu support");
return false;
} // MojoPlatform_installDesktopMenuItem


boolean MojoPlatform_uninstallDesktopMenuItem(const char *data)
{
// !!! FIXME: write me.
STUBBED("desktop menu support");
return false;
} // MojoPlatform_uninstallDesktopMenuItem


void MojoPlatform_spawnTerminal(void)
{
// unsupported.
Expand Down

0 comments on commit 77541c2

Please sign in to comment.