diff options
Diffstat (limited to 'nmglobal.h')
-rw-r--r-- | nmglobal.h | 40 |
1 files changed, 0 insertions, 40 deletions
@@ -50,56 +50,16 @@ typedef struct { double results; /* Results */ } EmFloatStruct; -/************************* -** FOURIER COEFFICIENTS ** -*************************/ - -/* -** TYPEDEFS -*/ typedef struct { double results; /* Results */ - unsigned long arraysize; /* Size of coeff. arrays */ } FourierStruct; -/************************* -** ASSIGNMENT ALGORITHM ** -*************************/ - -/* -** TYPEDEFS -*/ typedef struct { double results; /* Results */ } AssignStruct; -/******************** -** IDEA ENCRYPTION ** -********************/ - -/* -** DEFINES -*/ -/* Following constant defines the max number of loops the -** system will attempt. Keeps things from going off into the -** weeds. */ -/*#define MAXIDEALOOPS 50000L*/ -#define MAXIDEALOOPS 500000L - -/* -** Following constant sets the size of the arrays. -** NOTE: For the IDEA algorithm to work properly, this -** number MUST be some multiple of 8. -*/ -#define IDEAARRAYSIZE 4000L - -/* -** TYPEDEFS -*/ typedef struct { double results; /* Results */ - unsigned long arraysize; /* Size of array */ - unsigned long loops; /* # of times to convert */ } IDEAStruct; |