Changeset 996
- Timestamp:
- May 11, 2016 3:38:07 PM (6 years ago)
- Location:
- sans/XOP_Dev/EventLoader
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sans/XOP_Dev/EventLoader/EventLoadWave.cpp
r878 r996 759 759 numRows = (CountInt)counter.XYevents; 760 760 761 // sprintf(bufStr,"numCol = %d, numRows = % d\r",numColumns,numRows);761 // sprintf(bufStr,"numCol = %d, numRows = %lld\r",numColumns,(SInt64)numRows); 762 762 // XOPNotice(bufStr); 763 763 … … 780 780 // XOPNotice(bufStr); 781 781 if (err) { 782 sprintf(bufStr,"FileLoaderMakeWave returned an error numCol = %d, numRows = % d\r",numColumns,numRows);782 sprintf(bufStr,"FileLoaderMakeWave returned an error numCol = %d, numRows = %lld\r",numColumns,(SInt64)numRows); 783 783 XOPNotice(bufStr); 784 784 break; // NOTE: In this case, not all fields in caPtr are set. … … 978 978 */ 979 979 HOST_IMPORT int 980 main(IORecHandle ioRecHandle)980 XOPMain(IORecHandle ioRecHandle) 981 981 { 982 982 int err; … … 985 985 SetXOPEntry(XOPEntry); // Set entry point for future calls. 986 986 987 if (igorVersion < 6 00) { // Requires Igor Pro 6.00 or later.987 if (igorVersion < 620) { // Requires Igor Pro 6.20 or later. 988 988 SetXOPResult(OLD_IGOR); // OLD_IGOR is defined in EventLoadWave.h and there are corresponding error strings in EventLoadWave.r and EventLoadWaveWinCustom.rc. 989 989 return EXIT_FAILURE; -
sans/XOP_Dev/EventLoader/EventLoadWave.h
r878 r996 50 50 // In EventLoadWave.c 51 51 int LoadWave(int calledFromFunction, int flags, const char* baseName, const char* symbolicPathName, const char* fileParam); 52 HOST_IMPORT int main(IORecHandle ioRecHandle);52 HOST_IMPORT int XOPMain(IORecHandle ioRecHandle); 53 53 54 54 // In EventLoadWaveOperation.c
Note: See TracChangeset
for help on using the changeset viewer.