-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwigmap.h
More file actions
20 lines (15 loc) · 714 Bytes
/
Copy pathwigmap.h
File metadata and controls
20 lines (15 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Czytane ksiaki + generacja mapy wignera (1996 03 01) 1997 07 02 */
/* 1997 11 22 */
#ifndef WIGMAP_H
#define WIGMAP_H
#include "typdef.h"
#define GENBITMAP 1
#define NOGENBITMAP 0
void MakeWignerMap(PSBOOK *,int,int,int,int,UCHAR **,
float,float,char *,int,float); /* Kreacja mapy Wignera */
void MakeDyspersWignerMap(PSBOOK *,int,int,int,int,UCHAR **,
float,float,char *,int,float); /* Kreacja mapy Dyspersji Wignera */
UCHAR **MakeTableUChar(int,int); /* Tworzenie tablicy UCHAR */
void FreeTableUChar(UCHAR **,int); /* Zwalniane Tablicy */
void read_book(void); /* Czytanie ksiazki z pliku */
#endif