Revision: 71479
          http://sourceforge.net/p/brlcad/code/71479
Author:   starseeker
Date:     2018-08-10 13:11:07 +0000 (Fri, 10 Aug 2018)
Log Message:
-----------
Fix function signatures

Modified Paths:
--------------
    brlcad/trunk/src/librt/primitives/script/script.c

Modified: brlcad/trunk/src/librt/primitives/script/script.c
===================================================================
--- brlcad/trunk/src/librt/primitives/script/script.c   2018-08-10 13:02:32 UTC 
(rev 71478)
+++ brlcad/trunk/src/librt/primitives/script/script.c   2018-08-10 13:11:07 UTC 
(rev 71479)
@@ -157,7 +157,7 @@
 
 
 int
-rt_script_plot(struct bu_list *vhead, struct rt_db_internal *ip, const struct 
bn_tol *UNUSED(tol), const struct rt_view_info *UNUSED(info))
+rt_script_plot(struct bu_list *vhead, struct rt_db_internal *ip, const struct 
rt_tess_tol *UNUSED(ttol), const struct bn_tol *UNUSED(tol), const struct 
rt_view_info *UNUSED(info))
 {
     struct rt_script_internal *script_ip;
 
@@ -178,7 +178,7 @@
  * Import a script from the database format to the internal format.
  */
 int
-rt_script_import4(struct rt_db_internal *ip, const struct bu_external *ep, 
const struct db_i *dbip)
+rt_script_import4(struct rt_db_internal *ip, const struct bu_external *ep, 
register const fastf_t *UNUSED(mat), const struct db_i *dbip)
 {
     if (ip) RT_CK_DB_INTERNAL(ip);
     if (ep) BU_CK_EXTERNAL(ep);
@@ -192,7 +192,7 @@
  * The name is added by the caller, in the usual place.
  */
 int
-rt_script_export4(struct bu_external *ep, const struct rt_db_internal *ip, 
const struct db_i *dbip)
+rt_script_export4(struct bu_external *ep, const struct rt_db_internal *ip, 
double UNUSED(local2mm), const struct db_i *dbip)
 {
     if (ep) BU_CK_EXTERNAL(ep);
     if (ip) RT_CK_DB_INTERNAL(ip);
@@ -206,8 +206,8 @@
  * Import a script from the database format to the internal format.
  */
 int
-rt_script_import5(struct rt_db_internal *ip, const struct bu_external *ep)
-{    
+rt_script_import5(struct rt_db_internal *ip, const struct bu_external *ep, 
const fastf_t *UNUSED(mat), const struct db_i *UNUSED(dbip))
+{
     struct rt_script_internal *script_ip;
     unsigned char *ptr;
 
@@ -237,7 +237,7 @@
  * The name is added by the caller, in the usual place.
  */
 int
-rt_script_export5(struct bu_external *ep, const struct rt_db_internal *ip, 
const struct db_i *dbip)
+rt_script_export5(struct bu_external *ep, const struct rt_db_internal *ip, 
double UNUSED(local2mm), const struct db_i *dbip)
 {
     struct rt_script_internal *script_ip;
     unsigned char *cp;
@@ -277,7 +277,7 @@
  * tab, and give parameter values.
  */
 int
-rt_script_describe(struct bu_vls *str, const struct rt_db_internal *ip)
+rt_script_describe(struct bu_vls *str, const struct rt_db_internal *ip, int 
UNUSED(verbose), double UNUSED(mm2local))
 {
     char buf[256];
     struct rt_script_internal *script_ip =
@@ -352,7 +352,7 @@
 
 
 int
-rt_script_adjust(struct rt_db_internal *intern)
+rt_script_adjust(struct bu_vls *UNUSED(logstr), struct rt_db_internal *intern, 
int UNUSED(argc), const char **UNUSED(argv))
 {
     struct rt_script_internal *script_ip;
 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
BRL-CAD Source Commits mailing list
brlcad-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to