You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
655 B
C

#ifndef PUBLIC_H
#define PUBLIC_H
AFX_EXT_API double WINAPI DegreeToDMS(double degree);
AFX_EXT_API void WINAPI dfFloatToString(char *s,double x,int n);
AFX_EXT_API void WINAPI dfPrintXYZ(char* string, double *v, int num, int digits, char split);
AFX_EXT_API void WINAPI DegreeToDMS(double x,char *str,int n);
AFX_EXT_API double WINAPI DegreetoDMS(double degree, int n);
AFX_EXT_API double WINAPI DMSToDegree(double dms);
AFX_EXT_API void WINAPI dfPrintXYZ(double *xyz,char *str,int n,int bn);
AFX_EXT_API CString WINAPI GetSplitPath(const CString sFullPathName, CString context/*="ext"*/);
AFX_EXT_API CString WINAPI GetProjectionFormatFile();
#endif