Codebase list libhdate / scrub-obsolete/main bindings / pascal / hdate_dyn_pascal.pp
scrub-obsolete/main

Tree @scrub-obsolete/main (Download .tar.gz)

hdate_dyn_pascal.pp @scrub-obsolete/mainraw · history · blame

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
(*  libhdate
   Copyright (C) 1984-2003 Amos Shapir, 2004-2007  Yaacov Zamir <kzamir@walla.co.il>
   Copyright (C)  2008  Ido Kanner   <idokan@gmail.com>

   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.

History:
  14/06/2008 - Added support for GPC due to wishlist request in Debian:
                 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=486095
  25/01/2008 - Fixed some logical bugs.
             - Added FPDoc support
  12/01/2008 - Added support for dynamic loading for the library
*)

Unit hdate_dyn_pascal;

{$IFDEF FPC}
  {$MODE FPC}
  {$PACKRECORDS C}
  {$CALLING cdecl}
{$ENDIF}


(*
   Auto load means that we are loading the functions when the unit is loaded.
   Disable this define will mean that you should load and unload it by hand, using the needed procedures
*)
{$DEFINE AUTO_LOAD}

Interface

{$IFDEF FPC}

Uses
ctypes;
{$ENDIF}

{$IFDEF __GPC__}
type
  pcInt   = ^cInt;
  cInt    = longint;
  cDouble = double;
{$ENDIF}

{ Load and assign the hdate library dynamiclly
  Note: If AUTO_LOAD is defined, then no need to use this procedure
}
Procedure hdate_init;

{ Free the memory from the hdate library loading
  Note: If AUTO_LOAD is defined, then no need to use this procedure
}
Procedure hdate_done;

{ Return true if the library was was loaded, or false if not }
Function IsLoaded : Boolean;

Const
  {$IFDEF UNIX}
  LIBHDATE_LIBRARY_NAME = 'libhdate.so';
  {$ELSE}
    {$IFDEF MSWINODWS}
       LIBHDATE_LIBRARY_NAME = 'hdate.dll';
    {$ELSE}
      {$FATAL Unsupported environment}
    {$ENDIF}
  {$ENDIF}

(** @def HDATE_DIASPORA_FLAG
  @brief use diaspora dates and holydays flag
*)
  HDATE_DIASPORA_FLAG = -1;

(** @def HDATE_ISRAEL_FLAG
  @brief use israel dates and holydays flag
*)
  HDATE_ISRAEL_FLAG   = 0;

(** @def HDATE_SHORT_FLAG
  @brief use short strings flag
*)
  HDATE_SHORT_FLAG    = -1;

(** @def HDATE_LONG_FLAG
  @brief use long strings flag
*)
  HDATE_LONG_FLAG     = 0;


{ Base structore for hebrew dates }

Type
  // A pointer to the Thdate_struct record
  Phdate_struct = ^Thdate_struct;
  Thdate_struct = Record
    hd_day          : cInt;
    //The number of day in the hebrew month (1..31).
    hd_mon          : cInt;
    //The number of the hebrew month 1..14 (1 - tishre, 13 - adar 1, 14 - adar 2).
    hd_year         : cInt;
    //The number of the hebrew year.
    gd_day          : cInt;
    //The number of the day in the month. (1..31)
    gd_mon          : cInt;
    //The number of the month 1..12 (1 - jan).
    gd_year         : cInt;
    //The number of the year.
    hd_dw           : cInt;
    //The day of the week 1..7 (1 - sunday).
    hd_size_of_year : cInt;
    //The length of the year in days.
    hd_new_year_dw  : cInt;
    //The week day of Hebrew new year.
    hd_year_type    : cInt;
    //The number type of year.
    hd_jd           : cInt;
    //The Julian day number
    hd_days         : cInt;
    //The number of days passed since 1 tishrey
    hd_weeks        : cInt;
    //The number of weeks passed since 1 tishrey
  End;
(********************************************************************************)
(********************************************************************************)

Var
(**
 @brief compute date structure from the Gregorian date

 @param h pointer this hdate struct.
 @param d Day of month 1..31
 @param m Month 1..12
 @param y Year in 4 digits e.g. 2001
 @return pointer to this hdate struct
 *)
  hdate_set_gdate : Function (h : Phdate_struct; d, m, y : cInt) : Phdate_struct;


(**
 @brief compute date structure from the Hebrew date

 @param h pointer this hdate struct.
 @param d Day of month 1..31
 @param m Month 1..14 , (13 - Adar 1, 14 - Adar 2)
 @param y Year in 4 digits e.g. 5731
 @return pointer to this hdate struct
 *)
  hdate_set_hdate : Function (h : Phdate_struct; d, m, y : cInt) : Phdate_struct;


(**
 @brief compute date structure from the Julian day

 @param h pointer this hdate struct.
 @param jd the julian day number.
 @return pointer to this hdate struct
 *)
  hdate_set_jd : Function (h : Phdate_struct; jd : cInt) : Phdate_struct;

(*************************************************************)
(*************************************************************)


(**
 @brief get formated hebrew date.

 return the short ( e.g. "1 Tishrey" ) or
 long (e.g. "Tuesday 18 Tishrey 5763 Hol hamoed Sukot" ) formated date.

 @param h pointer this hdate struct.
 @param diaspora if true give diaspora holydays.
 @param s short flag.
 @return a static string of foramted date
*)
  hdate_get_format_date : Function  (h : Phdate_struct; diaspora, s : cInt) : PChar;


(**
 @brief get the number of hebrew parasha.

 @param h pointer this hdate struct.
 @param diaspora if true give diaspora readings
 @return the number of parasha 1. Bereshit etc..
   (55 trow 61 are joined strings e.g. Vayakhel Pekudei)
*)
  hdate_get_parasha : Function (h : Phdate_struct; diaspora : cInt) : cInt;


(**
 @brief get the number of hebrew holyday.

 @param h pointer this hdate struct.
 @param diaspora if true give diaspora holydays
 @return the number of holyday.
*)
  hdate_get_holyday : Function (h : Phdate_struct; diaspora : cInt) : cInt;

(*************************************************************)
(*************************************************************)


(**
 @brief convert an integer to hebrew string.

 @param n The int to convert
 @return a static string of the hebrew number UTF-8 (logical)
 @attention ( 0 < n < 10000)
*)
  hdate_get_int_string : Function (n : cInt) : PChar;



(**
 @brief get name of week day.

 @param day The number of the day 1..7 (1 - sun).
 @param s short flag
   true - returns a short string: sun, false returns: sunday.
 @return a static string of the day of the week
*)
  hdate_get_day_string : Function (day : cInt; s : cInt) : PChar;



(**
 @brief name of month.

 @param month the number of the month 1..12 (1 - jan).
 @param s short flag.
 @return a static string of month name
*)
  hdate_get_month_string : Function (month : cInt; s : cInt) : PChar;



(**
 @brief name of hebrew month.

 @param month the number of the month 1..14
   (1 - tishre, 13 - adar 1, 14 - adar 2).
 @param s short flag.
 @return a static string of month name
*)
  hdate_get_hebrew_month_string : Function (month : cInt; s : cInt) : PChar;



(**
 @brief name of hebrew holyday.

 @param holyday the holyday number.
 @param s short flag.
 @return a static string of holyday name
*)
  hdate_get_holyday_string : Function (holyday, s : cInt) : PChar;



(**
 @brief name of parasha

 @param parasha the number of parasha 1-Bereshit
   (55 trow 61 are joined strings e.g. Vayakhel Pekudei)
 @param s short flag.
 @return a static string of parasha name
*)
  hdate_get_parasha_string : Function (parasha, s : cInt) : PChar;


(*************************************************************)
(*************************************************************)


(**
 @brief get the hebrew holyday type.

 @param holyday the holyday number.
 @return the number of holyday type.
*)
  hdate_get_holyday_type : Function (holyday : cInt) : cInt;



(**
 @brief size of hebrew year in days.

 @param hebrew_year the hebrew year.
 @return size of Hebrew year
*)
  hdate_get_size_of_hebrew_year : Function (hebrew_year : cInt) : cInt;


(*************************************************************)
(*************************************************************)


(**
 @brief Days since Tishrey 3744

 @author Amos Shapir 1984 (rev. 1985, 1992) Yaacov Zamir 2003-2005

 @param hebrew_year The Hebrew year
 @return Number of days since 3,1,3744
*)
  hdate_days_from_3744 : Function (hebrew_year : cInt) : cInt;



(**
 @brief Return Hebrew year type based on size and first week day of year.

 @param size_of_year Length of year in days
 @param new_year_dw First week day of year
 @return the number for year type (1..14)
*)
  hdate_get_year_type : Function (size_of_year, new_year_dw : cInt) : cInt;



(**
 @brief Compute Julian day from Gregorian date

 @author Yaacov Zamir (algorithm from Henry F. Fliegel and Thomas C. Van Flandern ,1968)

 @param day Day of month 1..31
 @param month Month 1..12
 @param year Year in 4 digits e.g. 2001
 @return the julian day number
 *)
  hdate_gdate_to_jd : Function (day, month, year : cInt) : cInt;



(**
 @brief Compute Julian day from Hebrew day, month and year

 @author Amos Shapir 1984 (rev. 1985, 1992) Yaacov Zamir 2003-2005

 @param day Day of month 1..31
 @param month Month 1..14 (13 - Adar 1, 14 - Adar 2)
 @param year Hebrew year in 4 digits e.g. 5753
 @param jd_tishrey1 return the julian number of 1 Tishrey this year
 @param jd_tishrey1_next_year return the julian number of 1 Tishrey next year
 @return the julian day number
 *)
  hdate_hdate_to_jd : Function (day, month, year : cInt; jd_tishrey1, jd_tishrey1_next_year : pcInt)
                      : cInt;



(**
 @brief Converting from the Julian day to the Gregorian date

 @author Yaacov Zamir (Algorithm, Henry F. Fliegel and Thomas C. Van Flandern ,1968)

 @param jd Julian day
 @param day return Day of month 1..31
 @param month return Month 1..12
 @param year return Year in 4 digits e.g. 2001
 *)
  hdate_jd_to_gdate : Procedure (jd : cInt; day, month, year : pcInt);



(**
 @brief Converting from the Julian day to the Hebrew day

 @author Yaacov Zamir 2005

 @param jd Julian day
 @param day return Day of month 1..31
 @param month return Month 1..14 (13 - Adar 1, 14 - Adar 2)
 @param year return Year in 4 digits e.g. 2001
 @param jd_tishrey1 return the julian number of 1 Tishrey this year
 @param jd_tishrey1_next_year return the julian number of 1 Tishrey next year
 *)
  hdate_jd_to_hdate : Procedure (jd : cInt; day, month, year, jd_tishrey1, jd_tishrey1_next_year :
                                 pcInt);


(*************************************************************)
(*************************************************************)


(**
 @brief days from 1 january

 @param day this day of month
 @param month this month
 @param year this year
 @return the days from 1 jan
*)
  hdate_get_day_of_year : Function (day, month, year : cInt) : cInt;



(**
 @brief utc sunrise/set time for a gregorian date

 @param day this day of month
 @param month this month
 @param year this year
 @param longitude longitude to use in calculations
	degrees, negative values are east
  @param latitude latitude to use in calculations
	degrees, negative values are south
 @param sunrise return the utc sunrise in minutes after midnight (00:00)
 @param sunset return the utc sunset in minutes after midnight (00:00)
*)
  hdate_get_utc_sun_time : Procedure (day, month, year : cInt; latitude, longitude : cDouble;
                                      sunrise, sunset : pcInt);


(*************************************************************)
(*************************************************************)


(**
 @brief get the Gregorian day of the month

 @param h pointer this hdate struct.
 @return the Gregorian day of the month, 1..31.
 *)
  hdate_get_gday : Function (h : Phdate_struct) : cInt;



(**
 @brief get the Gregorian month

 @param h pointer this hdate struct.
 @return the Gregorian month, jan = 1.
 *)
  hdate_get_gmonth : Function (h : Phdate_struct) : cInt;



(**
 @brief get the Gregorian year

 @param h pointer this hdate struct.
 @return the Gregorian year.
 *)
  hdate_get_gyear : Function (h : Phdate_struct) : cInt;



(**
 @brief get the Hebrew day of the month

 @param h pointer this hdate struct.
 @return the Hebrew day of the month, 1..30.
 *)
  hdate_get_hday : Function (h : Phdate_struct) : cInt;



(**
 @brief get the Hebrew month

 @param h pointer this hdate struct.
 @return the Hebrew month, Tishery = 1 .. Adar I =13, Adar II = 14.
 *)
  hdate_get_hmonth : Function (h : Phdate_struct) : cInt;


(**
 @brief get the Hebrew year

 @param h pointer this hdate struct.
 @return the Hebrew year.
 *)
  hdate_get_hyear : Function (h : Phdate_struct) : cInt;



(**
 @brief get the day of the week

 @param h pointer this hdate struct.
 @return the the day of the week.
 *)
  hdate_get_day_of_the_week : Function (h : Phdate_struct) : cInt;



(**
 @brief get the size of the hebrew year

 @param h pointer this hdate struct.
 @return the the size of the hebrew year.
 *)
  hdate_get_size_of_year : Function (h : Phdate_struct) : cInt;



(**
 @brief get the new year day of the week

 @param h pointer this hdate struct.
 @return the the new year day of the week.
 *)
  hdate_get_new_year_day_of_the_week : Function (h : Phdate_struct) : cInt;



(**
 @brief get the Julian day number

 @param h pointer this hdate struct.
 @return the Julian day number.
 *)
  hdate_get_julian : Function (h : Phdate_struct) : cInt;



(**
 @brief get the number of days passed since 1 tishrey

 @param h pointer this hdate struct.
 @return the number of days passed since 1 tishrey.
 *)
  hdate_get_days : Function (h : Phdate_struct) : cInt;



(**
 @brief get the number of weeks passed since 1 tishrey

 @param h pointer this hdate struct.
 @return the number of weeks passed since 1 tishrey.
 *)
  hdate_get_weeks : Function (h : Phdate_struct) : cInt;


(*************************************************************)
(*************************************************************)


(**
 @brief creat a new hdate struct object, must be deleted using delete_hdate.

 @return a new hdate object
 *)
  new_hdate : Function : Phdate_struct;


(**
 @brief delete an hdate struct object.

 @param h pointer this hdate struct.
 *)
  delete_hdate : Function (h : Phdate_struct) : Phdate_struct;


(*************************************************************)
(*************************************************************)


(**
 @brief Return a static string, with the package name and version

 @return a a static string, with the package name and version
*)
  hdate_get_version_string : Function : PChar;


(**
 @brief Return a static string, with the name of translator

 @return a a static string, with the name of translator
*)
  hdate_get_translator_string : Function : PChar;


(**
 @brief utc sun times for altitude at a gregorian date

 @param day this day of month
 @param month this month
 @param year this year
 @param latitude latitude to use in calculations
 @param longitude longitude to use in calculations
 @param deg degrees of sun's altitude (0 -  Zenith .. 90 - Horizon)
 @param sunrise return the utc sunrise in minutes
 @param sunset return the utc sunset in minutes
*)
  hdate_get_utc_sun_time_deg : Procedure (day, month, year         : cint;
                                          latitude, longitude, deg : cdouble;
                                          sunrise, sunset          : pcint);


(**
 @brief utc sunrise/set time for a gregorian date

 @param day this day of month
 @param month this month
 @param year this year
 @param longitude longitude to use in calculations
 @param latitude latitude to use in calculations
 @param sun_hour return the length of shaa zmanit in minutes
 @param first_light return the utc alut ha-shachar in minutes
 @param talit return the utc tphilin and talit in minutes
 @param sunrise return the utc sunrise in minutes
 @param midday return the utc midday in minutes
 @param sunset return the utc sunset in minutes
 @param first_stars return the utc tzeit hacochavim in minutes
 @param three_stars return the utc shlosha cochavim in minutes
*)
  hdate_get_utc_sun_time_full : Procedure (day, month, year                                       : cint;
                                           latitude, longitude                                    : cdouble;
                                           sun_hour, first_light, talit, sunrise, midday, sunset,
                                           first_stars, three_stars                               : pcint);


Implementation
{$IFDEF FPC}
Uses dynlibs;
{$ENDIF}

{$IFDEF __GPC__}
const
  LIBHDATE_LIBRARY_NAME = 'libhdate.so';

  RTLD_LAZY         = $001;
  RTLD_NOW          = $002;
  RTLD_BINDING_MASK = $003;
  RTLD_GLOBAL       = $100;
  RTLD_NEXT         = pointer(-1);
{$IFDEF LINUX}
  RTLD_DEFAULT      = nil;
{$ENDIF}
{$IFDEF BSD}
  RTLD_DEFAULT      = pointer(-2);
  RTLD_MODEMASK     = RTLD_BINDING_MASK;
{$ENDIF}

type
  Pdl_info = ^dl_info;
  dl_info = record
    dli_fname      : Pchar;
    dli_fbase      : pointer;
    dli_sname      : Pchar;
    dli_saddr      : pointer;
  end;
  
  TLibHandle = PtrInt;

const
  NilHandle = TLibHandle(0);

function dlopen(Name : PChar; Flags : longint) : Pointer; external name 'dlopen';
function dlerror() : Pchar; external name 'dlerror';
function dlsym(Lib : PtrInt; Name : Pchar) : Pointer; external name 'dlsym';
function dlclose(Lib : TLibHandle) : Longint; external name 'dlclose';
function dladdr(Lib: pointer; info: Pdl_info): Longint; external name 'dladdr';
{$ENDIF}

Var
  Loaded    : Boolean;
  LibHandle : TLibHandle;

Procedure hdate_init;

{$IFDEF FPC}
  { Internal function of hdate_init, that load the function and assign it to the right function/procedure}
  Function AssignProc(Name : PChar; Fnc : Pointer) : boolean;
  Var
    address : pointer;
    pfnc    : ^pointer;
  Begin
    address    := Nil;
    address    := GetProcedureAddress(LibHandle, Name);
    pfnc       := Fnc;
    pfnc^      := address;
    AssignProc := address <> Nil;
  End;
{$ENDIF}
{$IFDEF __GPC__}
  { Internal function of hdate_init, that load the function and assign it to the right function/procedure}
  Function AssignProc(Name : PChar; Fnc : Pointer) : boolean;
  Var
    address : pointer;
    pfnc    : ^pointer;
  Begin
    address    := Nil;
    address    := dlsym(LibHandle,Name);
    pfnc       := Fnc;
    pfnc^      := address;
    AssignProc := address <> Nil;
  End;
{$ENDIF}

Begin
  If (Loaded) and (LibHandle <> NilHandle) Then
    exit;

  Loaded    := False;
  {$IFDEF FPC}
  LibHandle := LoadLibrary(LIBHDATE_LIBRARY_NAME);
  {$ENDIF}
  {$IFDEF __GPC__}
   LibHandle := TLibHandle(dlopen(LIBHDATE_LIBRARY_NAME, RTLD_LAZY));
  {$ENDIF}
  If LibHandle = NilHandle Then
    exit;

  If Not AssignProc('hdate_set_gdate',                    @hdate_set_gdate)                    Then
    exit;
  If Not AssignProc('hdate_set_hdate',                    @hdate_set_hdate)                    Then
    exit;
  If Not AssignProc('hdate_set_jd',                       @hdate_set_jd)                       Then
    exit;
  If Not AssignProc('hdate_get_format_date',              @hdate_get_format_date)              Then
    exit;
  If Not AssignProc('hdate_get_parasha',                  @hdate_get_parasha)                  Then
    exit;
  If Not AssignProc('hdate_get_holyday',                  @hdate_get_holyday)                  Then
    exit;
  If Not AssignProc('hdate_get_int_string',               @hdate_get_int_string)               Then
    exit;
  If Not AssignProc('hdate_get_day_string',               @hdate_get_day_string)               Then
    exit;
  If Not AssignProc('hdate_get_month_string',             @hdate_get_month_string)             Then
    exit;
  If Not AssignProc('hdate_get_hebrew_month_string',      @hdate_get_hebrew_month_string)      Then
    exit;
  If Not AssignProc('hdate_get_holyday_string',           @hdate_get_holyday_string)           Then
    exit;
  If Not AssignProc('hdate_get_parasha_string',           @hdate_get_parasha_string)           Then
    exit;
  If Not AssignProc('hdate_get_holyday_type',             @hdate_get_holyday_type)             Then
    exit;
  If Not AssignProc('hdate_get_size_of_hebrew_year',      @hdate_get_size_of_hebrew_year)      Then
    exit;
  If Not AssignProc('hdate_days_from_3744',               @hdate_days_from_3744)               Then
    exit;
  If Not AssignProc('hdate_get_year_type',                @hdate_get_year_type)                Then
    exit;
  If Not AssignProc('hdate_gdate_to_jd',                  @hdate_gdate_to_jd)                  Then
    exit;
  If Not AssignProc('hdate_hdate_to_jd',                  @hdate_hdate_to_jd)                  Then
    exit;
  If Not AssignProc('hdate_jd_to_gdate',                  @hdate_jd_to_gdate)                  Then
    exit;
  If Not AssignProc('hdate_jd_to_hdate',                  @hdate_jd_to_hdate)                  Then
    exit;
  If Not AssignProc('hdate_get_day_of_year',              @hdate_get_day_of_year)              Then
    exit;
  If Not AssignProc('hdate_get_utc_sun_time',             @hdate_get_utc_sun_time)             Then
    exit;
  If Not AssignProc('hdate_get_gday',                     @hdate_get_gday)                     Then
    exit;
  If Not AssignProc('hdate_get_gmonth',                   @hdate_get_gmonth)                   Then
    exit;
  If Not AssignProc('hdate_get_gyear',                    @hdate_get_gyear)                    Then
    exit;
  If Not AssignProc('hdate_get_hday',                     @hdate_get_hday)                     Then
    exit;
  If Not AssignProc('hdate_get_hmonth',                   @hdate_get_hmonth)                   Then
    exit;
  If Not AssignProc('hdate_get_hyear',                    @hdate_get_hyear)                    Then
    exit;
  If Not AssignProc('hdate_get_day_of_the_week',          @hdate_get_day_of_the_week)          Then
    exit;
  If Not AssignProc('hdate_get_size_of_year',             @hdate_get_size_of_year)             Then
    exit;
  If Not AssignProc('hdate_get_new_year_day_of_the_week', @hdate_get_new_year_day_of_the_week) Then
    exit;
  If Not AssignProc('hdate_get_julian',                   @hdate_get_julian)                   Then
    exit;
  If Not AssignProc('hdate_get_days',                     @hdate_get_days)                     Then
    exit;
  If Not AssignProc('hdate_get_weeks',                    @hdate_get_weeks)                    Then
    exit;
  If Not AssignProc('new_hdate',                          @new_hdate)                          Then
    exit;
  If Not AssignProc('delete_hdate',                       @delete_hdate)                       Then
    exit;
  If Not AssignProc('hdate_get_version_string',           @hdate_get_version_string)           Then
    exit;
  If Not AssignProc('hdate_get_translator_string',        @hdate_get_translator_string)        Then
    exit;
  If Not AssignProc('hdate_get_utc_sun_time_deg',         @hdate_get_utc_sun_time_deg)         Then
    exit;
  If Not AssignProc('hdate_get_utc_sun_time_full',        @hdate_get_utc_sun_time_full)        Then
    exit;

  Loaded := true;
End;

Procedure hdate_done;
Begin
  {$IFDEF FPC}
  If LibHandle <> NilHandle Then
    UnloadLibrary(LibHandle);
  {$ENDIF}
  {$IFDEF __GPC__}
  If LibHandle <> NilHandle Then
    LibHandle := dlClose(LibHandle);
  {$ENDIF}

  LibHandle := NilHandle;
  Loaded    := false;
End;

Function IsLoaded : Boolean;
Begin
  IsLoaded := Loaded;
End;

initialization
Loaded := false;
{$IFDEF AUTO_LOAD}
hdate_init;
{$ENDIF}
finalization
{$IFDEF AUTO_LOAD}
hdate_done;
{$ENDIF}
End.