syntax error in config header of custom module

I think I’ve missed something when updating my Panda build and converting the config code which seems to have changed a bit. The module is no longer compiling:

p3bullet_composite.cxx
pandagl.cxx
pandabullet.cxx
p3steam_composite1.cxx
p3display_composite2.cxx
parser.yxx.cxx
  *** Error in config_steam.h near line 25, column 30:
  syntax error, unexpected KW_VOID, expecting '{' or ';' or ':' or '='
Error parsing file: 'config_steam.h'
The following command returned a non-zero value: built_tune\bin\interrogate -src
dir panda/src/steam -Ipanda/src/steam -Dvolatile -Dmutable -DCPPPARSER -D__STDC_
_=1 -D__cplusplus -D__inline -longlong __int64 -D_X86_ -DWIN32_VC -DWIN32 -D_WIN
32 -D_MSC_VER=1600 -D"_declspec(param)=" -D_near -D_far -D__near -D__far -D__std
call -oc built_tune/tmp/libpandasteam_igate.cxx -od built_tune/pandac/input/libp
andasteam.in -fnames -string -refcount -assert -python-native -Sbuilt_tune/inclu
de/parser-inc -Ipanda/src/steam -Sbuilt_tune/tmp -Sbuilt_tune/include -Sthirdpar
ty/win-python/include -Sthirdparty/win-libs-vc10/eigen\include -Sthirdparty/win-
libs-vc10/steam/include -Sthirdparty/win-libs-vc10/extras/include -module steam
-library libpandasteam config_steam.h p3steam_composite1.cxx pandaSteamApi.h pan
daSteamRemoteStorage.h pandaSteamUser.h pandaSteamUserStats.h

The header is pretty standard, I’ve used other modules (bullet/physx) as a basis for it:

#ifndef CONFIG_STEAM_H
#define CONFIG_STEAM_H

#include "pandabase.h"
#include "notifyCategoryProxy.h"
#include "dconfig.h"

ConfigureDecl(config_steam, EXPCL_PANDASTEAM, EXPTP_PANDASTEAM);
NotifyCategoryDecl(steam, EXPCL_PANDASTEAM, EXPTP_PANDASTEAM);

extern EXPCL_PANDASTEAM void init_libsteam(); // Line 25 as referred to in error message

#endif

Looking for a hint as to where to look (some other file, I’m assuming) to resolve the problem.

Do you still have the EXPCL_PANDASTEAM definitions in panda/src/pandabase/pandasymbols.h ?

Aha! Looks like I accidentally removed one of the two sections when merging.
Thanks again!