#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "ccp4_program.h"
#include "ccp4_parser.h"
#include "ccp4_utils.h"
#include "ccp4_general.h"
Functions | |
char * | ccp4_prog_vers (char *progvers) |
char * | ccp4ProgramName (const char *progname) |
char * | ccp4RCSDate (const char *rcs_string) |
void | ccp4ProgramTime (int init) |
int | ccp4VerbosityLevel (int level) |
int | ccp4Callback (CCP4INTFUNCPTR mycallback, char *mode, int ierr, char *message) |
int | ccp4SetCallback (CCP4INTFUNCPTR mycallback) |
int | ccp4InvokeCallback (int ierr, char *message) |
int | ccp4NullCallback (int level, char *message) |
int | ccp4_licence_exists (const char *name) |
int | html_log_output (int ihtml_in) |
int | summary_output (int isumm_in) |
|
Check existence of licence agreement
|
|
Register or query program version.
|
|
Set or invoke a user-defined callback function The callback must be of the form "function(const int, const char *)" This is essentially an internal function which operates in one of two modes - in "set" mode the named function is stored and the remaining arguments are discarded; in "invoke" mode the stored function is executed with the supplied values (the supplied name is discarded).
|
|
Invoke the user-defined callback function This is a wrapper to ccp4Callback - it executes the user-defined callback function previously stored.
|
|
A dummy callback function used by default in ccp4CallOnExit Internal function. This function does nothing.
|
|
Set or return program name.
|
|
Set or print program time information
|
|
Set or return program RCS date
|
|
Set a user-defined callback function This is a wrapper to ccp4Callback - it stores a user-defined callback function which must be of the form "function(const int, const char *)"
|
|
Set or return the reference verbosity level Always return the verbosity level - if verboselevel is between 0 and 9 then reset the verbosity level to verboselevel
|
|
Register or query html output level.
|
|
Register or query summary output level.
|