Skip to content

Commit

Permalink
Fix windows bpipe plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed Feb 17, 2015
1 parent 587887f commit 184c057
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/win32/plugins/fd/bpipe-fd.c
Expand Up @@ -123,7 +123,7 @@ extern "C" {
/*
* External entry point called by Bareos to "load" the plugin
*/
bRC loadPlugin(bInfo *lbinfo, bFuncs *lbfuncs, genpInfo **pinfo, pFuncs **pfuncs)
bRC DLL_IMP_EXP loadPlugin(bInfo *lbinfo, bFuncs *lbfuncs, genpInfo **pinfo, pFuncs **pfuncs)
{
bfuncs = lbfuncs; /* set Bareos funct pointers */
binfo = lbinfo;
Expand All @@ -136,7 +136,7 @@ bRC loadPlugin(bInfo *lbinfo, bFuncs *lbfuncs, genpInfo **pinfo, pFuncs **pfuncs
/*
* External entry point to unload the plugin
*/
bRC unloadPlugin()
bRC DLL_IMP_EXP unloadPlugin()
{
// printf("bpipe-fd: Unloaded\n");
return bRC_OK;
Expand Down

0 comments on commit 184c057

Please sign in to comment.