You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
640 B
20 lines
640 B
/**************/
|
|
/** protos.h **/
|
|
/**************/
|
|
|
|
#ifndef PROTOS_H
|
|
#define PROTOS_H
|
|
|
|
extern int GenNetlistPcbnew( FILE* f, COMPONENT_LIST& list,
|
|
bool isEESchemaNetlist = true,
|
|
bool rightJustify = false );
|
|
extern bool LoadComponentFile( const wxString& fileName,
|
|
COMPONENT_LIST& list );
|
|
extern bool LoadFootprintFiles( const wxArrayString& libNames,
|
|
FOOTPRINT_LIST& list );
|
|
|
|
FOOTPRINT* GetModuleDescrByName( const wxString& FootprintName,
|
|
FOOTPRINT_LIST& list );
|
|
|
|
#endif // PROTOS_H
|
|
|