Revision a6b09085715d0d7f299e9ca76a4835ce5f5acfaf authored by Brad King on 09 March 2015, 13:25:16 UTC, committed by Brad King on 09 March 2015, 17:36:46 UTC
Simply check for whether the local generator has a parent instead of
depending on a string comparison of directory names.
1 parent 99575c9
Raw File
np_macmain.cpp
/***********************************************************\
  Written by: Richard Bateman (taxilian)

  Based on the default np_macmain.cpp from FireBreath
  http://firebreath.googlecode.com

  This file has been stripped to prevent it from accidently
  doing anything useful.
\***********************************************************/


#include <stdio.h>

typedef void (*NPP_ShutdownProcPtr)(void);
typedef short NPError;

#pragma GCC visibility push(default)

struct NPNetscapeFuncs;
struct NPPluginFuncs;

extern "C" {
    NPError NP_Initialize(NPNetscapeFuncs *browserFuncs);
    NPError NP_GetEntryPoints(NPPluginFuncs *pluginFuncs);
    NPError NP_Shutdown(void);
}

#pragma GCC visibility pop

void initPluginModule()
{
}

NPError NP_GetEntryPoints(NPPluginFuncs* pFuncs)
{
    printf("NP_GetEntryPoints()\n");
    return 0;
}

NPError NP_Initialize(NPNetscapeFuncs* pFuncs)
{
    printf("NP_Initialize()\n");
    return 0;
}

NPError NP_Shutdown()
{
    return 0;
}
back to top