IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 16, 2020, 1:54:47 PM (6 years ago)
Author:
tdeboer
Message:

revert to working Ohana build

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/libkapa/src/KapaWindow.c

    r41156 r41340  
    455455}
    456456
    457 int KapaSetSmoothSigma (int fd, float sigma) {
    458 
    459   KiiSendCommand (fd, 4, "SIGM");
    460   KiiSendMessage (fd, "%4.1f ", sigma);
    461   KiiWaitAnswer (fd, "DONE");
    462   return (TRUE);
    463 }
    464 
    465 int KapaMemoryDump (int fd) {
    466 
    467   KiiSendCommand (fd, 4, "MEMD");
    468   KiiWaitAnswer (fd, "DONE");
    469   return (TRUE);
    470 }
    471 
    472 int KapaMemoryDumpLines (int fd, int Nlines) {
    473 
    474   KiiSendCommand (fd, 4, "MEML");
    475   KiiSendMessage (fd, "%d ", Nlines);
    476   KiiWaitAnswer (fd, "DONE");
    477   return (TRUE);
    478 }
    479 
    480 int KapaMemoryDumpOnExit (int fd, int state) {
    481 
    482   KiiSendCommand (fd, 4, "MEMX");
    483   KiiSendMessage (fd, "%d ", state);
    484   KiiWaitAnswer (fd, "DONE");
    485   return (TRUE);
    486 }
    487 
Note: See TracChangeset for help on using the changeset viewer.