Changeset 209

Show
Ignore:
Timestamp:
03/16/08 04:44:15 (5 months ago)
Author:
mattn
Message:

* forgot the header files in previous commit

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • GtkRadiant/branches/ZeroRadiant/include/qerplugin.h

    r195 r209  
    611611typedef char* (* PFN_GETMAPFILENAME)(); 
    612612 
     613typedef bfilter_t* (* PFN_QERPLUG_FILTERADD)(int type, int bmask, char *str, int exclude); 
     614 
     615typedef void (* PFN_QERPLUG_FILTERACTIVATE) (void); 
     616 
    613617  // FIXME: 
    614618// add map format extensions 
     
    750754  PFN_QERAPP_READPROJECTKEY m_pfnReadProjectKey; 
    751755 
     756  PFN_QERPLUG_FILTERACTIVATE m_pfnFiltersActivate; 
     757  PFN_QERPLUG_FILTERADD m_pfnFilterAdd; 
     758 
    752759  // digibob from the old _QERAppBSPFrontendTable table 
    753        PFN_GETMAPFILENAME  m_pfnGetMapName; 
     760  PFN_GETMAPFILENAME  m_pfnGetMapName; 
    754761}; 
    755762