forked from JetBrains/phpstorm-stubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ncurses.php
1767 lines (1605 loc) · 42.4 KB
/
ncurses.php
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
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
// Start of ncurses v.
/**
* Add character at current position and advance cursor
* @link http://php.net/manual/en/function.ncurses-addch.php
* @param ch int <p>
* </p>
* @return int
*/
function ncurses_addch ($ch) {}
/**
* Set fore- and background color
* @link http://php.net/manual/en/function.ncurses-color-set.php
* @param pair int <p>
* </p>
* @return int
*/
function ncurses_color_set ($pair) {}
/**
* Delete a ncurses window
* @link http://php.net/manual/en/function.ncurses-delwin.php
* @param window resource <p>
* </p>
* @return bool
*/
function ncurses_delwin ($window) {}
/**
* Stop using ncurses, clean up the screen
* @link http://php.net/manual/en/function.ncurses-end.php
* @return int
*/
function ncurses_end () {}
/**
* Read a character from keyboard
* @link http://php.net/manual/en/function.ncurses-getch.php
* @return int
*/
function ncurses_getch () {}
/**
* Check if terminal has colors
* @link http://php.net/manual/en/function.ncurses-has-colors.php
* @return bool Return true if the terminal has color capacities, false otherwise.
* </p>
*/
function ncurses_has_colors () {}
/**
* Initialize ncurses
* @link http://php.net/manual/en/function.ncurses-init.php
* @return void &return.void;
* </p>
*/
function ncurses_init () {}
/**
* Allocate a color pair
* @link http://php.net/manual/en/function.ncurses-init-pair.php
* @param pair int <p>
* </p>
* @param fg int <p>
* </p>
* @param bg int <p>
* </p>
* @return int
*/
function ncurses_init_pair ($pair, $fg, $bg) {}
/**
* Gets the RGB value for color
* @link http://php.net/manual/en/function.ncurses-color-content.php
* @param color int <p>
* </p>
* @param r int <p>
* </p>
* @param g int <p>
* </p>
* @param b int <p>
* </p>
* @return int
*/
function ncurses_color_content ($color, &$r, &$g, &$b) {}
/**
* Gets the RGB value for color
* @link http://php.net/manual/en/function.ncurses-pair-content.php
* @param pair int <p>
* </p>
* @param f int <p>
* </p>
* @param b int <p>
* </p>
* @return int
*/
function ncurses_pair_content ($pair, &$f, &$b) {}
/**
* Move output position
* @link http://php.net/manual/en/function.ncurses-move.php
* @param y int <p>
* </p>
* @param x int <p>
* </p>
* @return int
*/
function ncurses_move ($y, $x) {}
/**
* Create a new window
* @link http://php.net/manual/en/function.ncurses-newwin.php
* @param rows int <p>
* Number of rows
* </p>
* @param cols int <p>
* Number of columns
* </p>
* @param y int <p>
* y-ccordinate of the origin
* </p>
* @param x int <p>
* x-ccordinate of the origin
* </p>
* @return resource a resource ID for the new window.
* </p>
*/
function ncurses_newwin ($rows, $cols, $y, $x) {}
/**
* Refresh screen
* @link http://php.net/manual/en/function.ncurses-refresh.php
* @param ch int <p>
* </p>
* @return int
*/
function ncurses_refresh ($ch) {}
/**
* Start using colors
* @link http://php.net/manual/en/function.ncurses-start-color.php
* @return int
*/
function ncurses_start_color () {}
/**
* Start using 'standout' attribute
* @link http://php.net/manual/en/function.ncurses-standout.php
* @return int
*/
function ncurses_standout () {}
/**
* Stop using 'standout' attribute
* @link http://php.net/manual/en/function.ncurses-standend.php
* @return int
*/
function ncurses_standend () {}
/**
* Returns baudrate of terminal
* @link http://php.net/manual/en/function.ncurses-baudrate.php
* @return int
*/
function ncurses_baudrate () {}
/**
* Let the terminal beep
* @link http://php.net/manual/en/function.ncurses-beep.php
* @return int
*/
function ncurses_beep () {}
/**
* Check if we can change terminals colors
* @link http://php.net/manual/en/function.ncurses-can-change-color.php
* @return bool Return true if the terminal has color capabilities and you can change
* the colors, false otherwise.
* </p>
*/
function ncurses_can_change_color () {}
/**
* Switch of input buffering
* @link http://php.net/manual/en/function.ncurses-cbreak.php
* @return bool true or NCURSES_ERR if any error occurred.
* </p>
*/
function ncurses_cbreak () {}
/**
* Clear screen
* @link http://php.net/manual/en/function.ncurses-clear.php
* @return bool &return.success;
* </p>
*/
function ncurses_clear () {}
/**
* Clear screen from current position to bottom
* @link http://php.net/manual/en/function.ncurses-clrtobot.php
* @return bool &return.success;
* </p>
*/
function ncurses_clrtobot () {}
/**
* Clear screen from current position to end of line
* @link http://php.net/manual/en/function.ncurses-clrtoeol.php
* @return bool &return.success;
* </p>
*/
function ncurses_clrtoeol () {}
/**
* Saves terminals (program) mode
* @link http://php.net/manual/en/function.ncurses-def-prog-mode.php
* @return bool false on success, otherwise true.
* </p>
*/
function ncurses_def_prog_mode () {}
/**
* Resets the prog mode saved by def_prog_mode
* @link http://php.net/manual/en/function.ncurses-reset-prog-mode.php
* @return int
*/
function ncurses_reset_prog_mode () {}
/**
* Saves terminals (shell) mode
* @link http://php.net/manual/en/function.ncurses-def-shell-mode.php
* @return bool false on success, true otherwise.
* </p>
*/
function ncurses_def_shell_mode () {}
/**
* Resets the shell mode saved by def_shell_mode
* @link http://php.net/manual/en/function.ncurses-reset-shell-mode.php
* @return int
*/
function ncurses_reset_shell_mode () {}
/**
* Delete character at current position, move rest of line left
* @link http://php.net/manual/en/function.ncurses-delch.php
* @return bool false on success, true otherwise.
* </p>
*/
function ncurses_delch () {}
/**
* Delete line at current position, move rest of screen up
* @link http://php.net/manual/en/function.ncurses-deleteln.php
* @return bool false on success, otherwise true.
* </p>
*/
function ncurses_deleteln () {}
/**
* Write all prepared refreshes to terminal
* @link http://php.net/manual/en/function.ncurses-doupdate.php
* @return bool &return.success;
* </p>
*/
function ncurses_doupdate () {}
/**
* Activate keyboard input echo
* @link http://php.net/manual/en/function.ncurses-echo.php
* @return bool false on success, true if any error occurred.
* </p>
*/
function ncurses_echo () {}
/**
* Erase terminal screen
* @link http://php.net/manual/en/function.ncurses-erase.php
* @return bool &return.success;
* </p>
*/
function ncurses_erase () {}
/**
* Erase window contents
* @link http://php.net/manual/en/function.ncurses-werase.php
* @param window resource <p>
* </p>
* @return int
*/
function ncurses_werase ($window) {}
/**
* Returns current erase character
* @link http://php.net/manual/en/function.ncurses-erasechar.php
* @return string The current erase char, as a string.
* </p>
*/
function ncurses_erasechar () {}
/**
* Flash terminal screen (visual bell)
* @link http://php.net/manual/en/function.ncurses-flash.php
* @return bool false on success, otherwise true.
* </p>
*/
function ncurses_flash () {}
/**
* Flush keyboard input buffer
* @link http://php.net/manual/en/function.ncurses-flushinp.php
* @return bool false on success, otherwise true.
* </p>
*/
function ncurses_flushinp () {}
/**
* Check for insert- and delete-capabilities
* @link http://php.net/manual/en/function.ncurses-has-ic.php
* @return bool true if the terminal has insert/delete-capabilities, false
* otherwise.
* </p>
*/
function ncurses_has_ic () {}
/**
* Check for line insert- and delete-capabilities
* @link http://php.net/manual/en/function.ncurses-has-il.php
* @return bool true if the terminal has insert/delete-line capabilities,
* false otherwise.
* </p>
*/
function ncurses_has_il () {}
/**
* Get character and attribute at current position
* @link http://php.net/manual/en/function.ncurses-inch.php
* @return string the character, as a string.
* </p>
*/
function ncurses_inch () {}
/**
* Insert a line, move rest of screen down
* @link http://php.net/manual/en/function.ncurses-insertln.php
* @return int
*/
function ncurses_insertln () {}
/**
* Ncurses is in endwin mode, normal screen output may be performed
* @link http://php.net/manual/en/function.ncurses-isendwin.php
* @return bool true, if ncurses_endwin has been called
* without any subsequent calls to ncurses_wrefresh,
* false otherwise.
* </p>
*/
function ncurses_isendwin () {}
/**
* Returns current line kill character
* @link http://php.net/manual/en/function.ncurses-killchar.php
* @return string the kill character, as a string.
* </p>
*/
function ncurses_killchar () {}
/**
* Translate newline and carriage return / line feed
* @link http://php.net/manual/en/function.ncurses-nl.php
* @return bool
*/
function ncurses_nl () {}
/**
* Switch terminal to cooked mode
* @link http://php.net/manual/en/function.ncurses-nocbreak.php
* @return bool true if any error occurred, otherwise false.
* </p>
*/
function ncurses_nocbreak () {}
/**
* Switch off keyboard input echo
* @link http://php.net/manual/en/function.ncurses-noecho.php
* @return bool true if any error occurred, false otherwise.
* </p>
*/
function ncurses_noecho () {}
/**
* Do not translate newline and carriage return / line feed
* @link http://php.net/manual/en/function.ncurses-nonl.php
* @return bool
*/
function ncurses_nonl () {}
/**
* Switch terminal out of raw mode
* @link http://php.net/manual/en/function.ncurses-noraw.php
* @return bool true if any error occurred, otherwise false.
* </p>
*/
function ncurses_noraw () {}
/**
* Switch terminal into raw mode
* @link http://php.net/manual/en/function.ncurses-raw.php
* @return bool true if any error occurred, otherwise false.
* </p>
*/
function ncurses_raw () {}
/**
* Enables/Disable 8-bit meta key information
* @link http://php.net/manual/en/function.ncurses-meta.php
* @param window resource <p>
* </p>
* @param 8bit bool <p>
* </p>
* @return int
*/
function ncurses_meta ($window, $bit8) {}
/**
* Restores saved terminal state
* @link http://php.net/manual/en/function.ncurses-resetty.php
* @return bool Always returns false.
* </p>
*/
function ncurses_resetty () {}
/**
* Saves terminal state
* @link http://php.net/manual/en/function.ncurses-savetty.php
* @return bool Always returns false.
* </p>
*/
function ncurses_savetty () {}
/**
* Returns a logical OR of all attribute flags supported by terminal
* @link http://php.net/manual/en/function.ncurses-termattrs.php
* @return bool
*/
function ncurses_termattrs () {}
/**
* Assign terminal default colors to color id -1
* @link http://php.net/manual/en/function.ncurses-use-default-colors.php
* @return bool
*/
function ncurses_use_default_colors () {}
/**
* Returns current soft label key attribute
* @link http://php.net/manual/en/function.ncurses-slk-attr.php
* @return int The attribute, as an integer.
* </p>
*/
function ncurses_slk_attr () {}
/**
* Clears soft labels from screen
* @link http://php.net/manual/en/function.ncurses-slk-clear.php
* @return bool true on errors, false otherwise.
* </p>
*/
function ncurses_slk_clear () {}
/**
* Copies soft label keys to virtual screen
* @link http://php.net/manual/en/function.ncurses-slk-noutrefresh.php
* @return bool
*/
function ncurses_slk_noutrefresh () {}
/**
* Copies soft label keys to screen
* @link http://php.net/manual/en/function.ncurses-slk-refresh.php
* @return int
*/
function ncurses_slk_refresh () {}
/**
* Restores soft label keys
* @link http://php.net/manual/en/function.ncurses-slk-restore.php
* @return int
*/
function ncurses_slk_restore () {}
/**
* Forces output when ncurses_slk_noutrefresh is performed
* @link http://php.net/manual/en/function.ncurses-slk-touch.php
* @return int
*/
function ncurses_slk_touch () {}
/**
* Turn off the given attributes
* @link http://php.net/manual/en/function.ncurses-attroff.php
* @param attributes int <p>
* </p>
* @return int
*/
function ncurses_attroff ($attributes) {}
/**
* Turn on the given attributes
* @link http://php.net/manual/en/function.ncurses-attron.php
* @param attributes int <p>
* </p>
* @return int
*/
function ncurses_attron ($attributes) {}
/**
* Set given attributes
* @link http://php.net/manual/en/function.ncurses-attrset.php
* @param attributes int <p>
* </p>
* @return int
*/
function ncurses_attrset ($attributes) {}
/**
* Set background property for terminal screen
* @link http://php.net/manual/en/function.ncurses-bkgd.php
* @param attrchar int <p>
* </p>
* @return int
*/
function ncurses_bkgd ($attrchar) {}
/**
* Set cursor state
* @link http://php.net/manual/en/function.ncurses-curs-set.php
* @param visibility int <p>
* </p>
* @return int
*/
function ncurses_curs_set ($visibility) {}
/**
* Delay output on terminal using padding characters
* @link http://php.net/manual/en/function.ncurses-delay-output.php
* @param milliseconds int <p>
* </p>
* @return int
*/
function ncurses_delay_output ($milliseconds) {}
/**
* Single character output including refresh
* @link http://php.net/manual/en/function.ncurses-echochar.php
* @param character int <p>
* </p>
* @return int
*/
function ncurses_echochar ($character) {}
/**
* Put terminal into halfdelay mode
* @link http://php.net/manual/en/function.ncurses-halfdelay.php
* @param tenth int <p>
* </p>
* @return int
*/
function ncurses_halfdelay ($tenth) {}
/**
* Check for presence of a function key on terminal keyboard
* @link http://php.net/manual/en/function.ncurses-has-key.php
* @param keycode int <p>
* </p>
* @return int
*/
function ncurses_has_key ($keycode) {}
/**
* Insert character moving rest of line including character at current position
* @link http://php.net/manual/en/function.ncurses-insch.php
* @param character int <p>
* </p>
* @return int
*/
function ncurses_insch ($character) {}
/**
* Insert lines before current line scrolling down (negative numbers delete and scroll up)
* @link http://php.net/manual/en/function.ncurses-insdelln.php
* @param count int <p>
* </p>
* @return int
*/
function ncurses_insdelln ($count) {}
/**
* Set timeout for mouse button clicks
* @link http://php.net/manual/en/function.ncurses-mouseinterval.php
* @param milliseconds int <p>
* </p>
* @return int
*/
function ncurses_mouseinterval ($milliseconds) {}
/**
* Sleep
* @link http://php.net/manual/en/function.ncurses-napms.php
* @param milliseconds int <p>
* </p>
* @return int
*/
function ncurses_napms ($milliseconds) {}
/**
* Scroll window content up or down without changing current position
* @link http://php.net/manual/en/function.ncurses-scrl.php
* @param count int <p>
* </p>
* @return int
*/
function ncurses_scrl ($count) {}
/**
* Turn off the given attributes for soft function-key labels
* @link http://php.net/manual/en/function.ncurses-slk-attroff.php
* @param intarg int <p>
* </p>
* @return int
*/
function ncurses_slk_attroff ($intarg) {}
/**
* Turn on the given attributes for soft function-key labels
* @link http://php.net/manual/en/function.ncurses-slk-attron.php
* @param intarg int <p>
* </p>
* @return int
*/
function ncurses_slk_attron ($intarg) {}
/**
* Set given attributes for soft function-key labels
* @link http://php.net/manual/en/function.ncurses-slk-attrset.php
* @param intarg int <p>
* </p>
* @return int
*/
function ncurses_slk_attrset ($intarg) {}
/**
* Sets color for soft label keys
* @link http://php.net/manual/en/function.ncurses-slk-color.php
* @param intarg int <p>
* </p>
* @return int
*/
function ncurses_slk_color ($intarg) {}
/**
* Initializes soft label key functions
* @link http://php.net/manual/en/function.ncurses-slk-init.php
* @param format int <p>
* If ncurses_initscr eventually uses a line from
* stdscr to emulate the soft labels, then this parameter determines how
* the labels are arranged of the screen.
* </p>
* <p>
* 0 indicates a 3-2-3 arrangement of the labels, 1 indicates a 4-4
* arrangement and 2 indicates the PC like 4-4-4 mode, but in addition an
* index line will be created.
* </p>
* @return bool &return.success;
* </p>
*/
function ncurses_slk_init ($format) {}
/**
* Sets function key labels
* @link http://php.net/manual/en/function.ncurses-slk-set.php
* @param labelnr int <p>
* </p>
* @param label string <p>
* </p>
* @param format int <p>
* </p>
* @return bool
*/
function ncurses_slk_set ($labelnr, $label, $format) {}
/**
* Specify different filedescriptor for typeahead checking
* @link http://php.net/manual/en/function.ncurses-typeahead.php
* @param fd int <p>
* </p>
* @return int
*/
function ncurses_typeahead ($fd) {}
/**
* Put a character back into the input stream
* @link http://php.net/manual/en/function.ncurses-ungetch.php
* @param keycode int <p>
* </p>
* @return int
*/
function ncurses_ungetch ($keycode) {}
/**
* Display the string on the terminal in the video attribute mode
* @link http://php.net/manual/en/function.ncurses-vidattr.php
* @param intarg int <p>
* </p>
* @return int
*/
function ncurses_vidattr ($intarg) {}
/**
* Refresh window on terminal screen
* @link http://php.net/manual/en/function.ncurses-wrefresh.php
* @param window resource <p>
* </p>
* @return int
*/
function ncurses_wrefresh ($window) {}
/**
* Control use of extended names in terminfo descriptions
* @link http://php.net/manual/en/function.ncurses-use-extended-names.php
* @param flag bool <p>
* </p>
* @return int
*/
function ncurses_use_extended_names ($flag) {}
/**
* Control screen background
* @link http://php.net/manual/en/function.ncurses-bkgdset.php
* @param attrchar int <p>
* </p>
* @return void
*/
function ncurses_bkgdset ($attrchar) {}
/**
* Set LINES for iniscr() and newterm() to 1
* @link http://php.net/manual/en/function.ncurses-filter.php
* @return void
*/
function ncurses_filter () {}
/**
* Do not flush on signal characters
* @link http://php.net/manual/en/function.ncurses-noqiflush.php
* @return void
*/
function ncurses_noqiflush () {}
/**
* Flush on signal characters
* @link http://php.net/manual/en/function.ncurses-qiflush.php
* @return void
*/
function ncurses_qiflush () {}
/**
* Set timeout for special key sequences
* @link http://php.net/manual/en/function.ncurses-timeout.php
* @param millisec int <p>
* </p>
* @return void
*/
function ncurses_timeout ($millisec) {}
/**
* Control use of environment information about terminal size
* @link http://php.net/manual/en/function.ncurses-use-env.php
* @param flag bool <p>
* </p>
* @return void
*/
function ncurses_use_env ($flag) {}
/**
* Output text at current position
* @link http://php.net/manual/en/function.ncurses-addstr.php
* @param text string <p>
* </p>
* @return int
*/
function ncurses_addstr ($text) {}
/**
* Apply padding information to the string and output it
* @link http://php.net/manual/en/function.ncurses-putp.php
* @param text string <p>
* </p>
* @return int
*/
function ncurses_putp ($text) {}
/**
* Dump screen content to file
* @link http://php.net/manual/en/function.ncurses-scr-dump.php
* @param filename string <p>
* </p>
* @return int
*/
function ncurses_scr_dump ($filename) {}
/**
* Initialize screen from file dump
* @link http://php.net/manual/en/function.ncurses-scr-init.php
* @param filename string <p>
* </p>
* @return int
*/
function ncurses_scr_init ($filename) {}
/**
* Restore screen from file dump
* @link http://php.net/manual/en/function.ncurses-scr-restore.php
* @param filename string <p>
* </p>
* @return int
*/
function ncurses_scr_restore ($filename) {}
/**
* Inherit screen from file dump
* @link http://php.net/manual/en/function.ncurses-scr-set.php
* @param filename string <p>
* </p>
* @return int
*/
function ncurses_scr_set ($filename) {}
/**
* Move current position and add character
* @link http://php.net/manual/en/function.ncurses-mvaddch.php
* @param y int <p>
* </p>
* @param x int <p>
* </p>
* @param c int <p>
* </p>
* @return int
*/
function ncurses_mvaddch ($y, $x, $c) {}
/**
* Move position and add attributed string with specified length
* @link http://php.net/manual/en/function.ncurses-mvaddchnstr.php
* @param y int <p>
* </p>
* @param x int <p>
* </p>
* @param s string <p>
* </p>
* @param n int <p>
* </p>
* @return int
*/
function ncurses_mvaddchnstr ($y, $x, $s, $n) {}
/**
* Add attributed string with specified length at current position
* @link http://php.net/manual/en/function.ncurses-addchnstr.php
* @param s string <p>
* </p>
* @param n int <p>
* </p>
* @return int
*/
function ncurses_addchnstr ($s, $n) {}
/**
* Move position and add attributed string
* @link http://php.net/manual/en/function.ncurses-mvaddchstr.php
* @param y int <p>
* </p>
* @param x int <p>
* </p>
* @param s string <p>
* </p>
* @return int
*/
function ncurses_mvaddchstr ($y, $x, $s) {}
/**
* Add attributed string at current position
* @link http://php.net/manual/en/function.ncurses-addchstr.php
* @param s string <p>
* </p>
* @return int
*/
function ncurses_addchstr ($s) {}
/**
* Move position and add string with specified length
* @link http://php.net/manual/en/function.ncurses-mvaddnstr.php
* @param y int <p>
* </p>
* @param x int <p>
* </p>
* @param s string <p>
* </p>
* @param n int <p>
* </p>
* @return int
*/
function ncurses_mvaddnstr ($y, $x, $s, $n) {}
/**
* Add string with specified length at current position
* @link http://php.net/manual/en/function.ncurses-addnstr.php
* @param s string <p>
* </p>
* @param n int <p>
* </p>
* @return int
*/
function ncurses_addnstr ($s, $n) {}
/**
* Move position and add string
* @link http://php.net/manual/en/function.ncurses-mvaddstr.php
* @param y int <p>
* </p>
* @param x int <p>
* </p>
* @param s string <p>
* </p>
* @return int
*/
function ncurses_mvaddstr ($y, $x, $s) {}
/**
* Move position and delete character, shift rest of line left
* @link http://php.net/manual/en/function.ncurses-mvdelch.php
* @param y int <p>
* </p>
* @param x int <p>
* </p>
* @return int
*/
function ncurses_mvdelch ($y, $x) {}
/**
* Move position and get character at new position
* @link http://php.net/manual/en/function.ncurses-mvgetch.php
* @param y int <p>
* </p>
* @param x int <p>
* </p>
* @return int
*/
function ncurses_mvgetch ($y, $x) {}
/**
* Move position and get attributed character at new position
* @link http://php.net/manual/en/function.ncurses-mvinch.php
* @param y int <p>
* </p>
* @param x int <p>
* </p>
* @return int
*/
function ncurses_mvinch ($y, $x) {}
/**
* Add string at new position in window
* @link http://php.net/manual/en/function.ncurses-mvwaddstr.php
* @param window resource <p>
* </p>
* @param y int <p>
* </p>
* @param x int <p>
* </p>
* @param text string <p>
* </p>
* @return int
*/
function ncurses_mvwaddstr ($window, $y, $x, $text) {}
/**
* Insert string at current position, moving rest of line right
* @link http://php.net/manual/en/function.ncurses-insstr.php
* @param text string <p>
* </p>
* @return int
*/
function ncurses_insstr ($text) {}