Index: /issm/trunk/src/c/modules/Exp2Kmlx/Exp2Kmlx.cpp
===================================================================
--- /issm/trunk/src/c/modules/Exp2Kmlx/Exp2Kmlx.cpp	(revision 8715)
+++ /issm/trunk/src/c/modules/Exp2Kmlx/Exp2Kmlx.cpp	(revision 8716)
@@ -11,6 +11,19 @@
 
 int Exp2Kmlx(char* filexp,char* filkml,
-			 int holes,
-			 int sgn,double cm,double sp){
+			 int sgn,
+			 bool holes){
+
+	double  cm,sp;
+
+	Xy2lldef(&cm,&sp,sgn);
+
+	return(Exp2Kmlx(filexp,filkml,
+					sgn,cm,sp,
+					holes));
+}
+
+int Exp2Kmlx(char* filexp,char* filkml,
+			 int sgn,double cm,double sp,
+			 bool holes){
 
 	int     i,j,iret=0;
Index: /issm/trunk/src/c/modules/Exp2Kmlx/Exp2Kmlx.h
===================================================================
--- /issm/trunk/src/c/modules/Exp2Kmlx/Exp2Kmlx.h	(revision 8715)
+++ /issm/trunk/src/c/modules/Exp2Kmlx/Exp2Kmlx.h	(revision 8716)
@@ -12,6 +12,9 @@
 /* local prototypes: */
 int Exp2Kmlx(char* filexp,char* filkml,
-			 int holes,
-			 int sgn,double cm,double sp);
+			 int sgn,
+			 bool holes);
+int Exp2Kmlx(char* filexp,char* filkml,
+			 int sgn,double cm,double sp,
+			 bool holes);
 
 #endif  /* _EXP2KMLX_H */
