llib-lpanelw 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /****************************************************************************
  2. * Copyright (c) 2002,2005 Free Software Foundation, Inc. *
  3. * *
  4. * Permission is hereby granted, free of charge, to any person obtaining a *
  5. * copy of this software and associated documentation files (the *
  6. * "Software"), to deal in the Software without restriction, including *
  7. * without limitation the rights to use, copy, modify, merge, publish, *
  8. * distribute, distribute with modifications, sublicense, and/or sell *
  9. * copies of the Software, and to permit persons to whom the Software is *
  10. * furnished to do so, subject to the following conditions: *
  11. * *
  12. * The above copyright notice and this permission notice shall be included *
  13. * in all copies or substantial portions of the Software. *
  14. * *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
  16. * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
  17. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
  18. * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
  19. * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
  20. * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
  21. * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
  22. * *
  23. * Except as contained in this notice, the name(s) of the above copyright *
  24. * holders shall not be used in advertising or otherwise to promote the *
  25. * sale, use or other dealings in this Software without prior written *
  26. * authorization. *
  27. ****************************************************************************/
  28. /****************************************************************************
  29. * Author: Thomas E. Dickey 2002,2005 *
  30. ****************************************************************************/
  31. /* LINTLIBRARY */
  32. /* ./panel.c */
  33. #include "panel.priv.h"
  34. #undef _nc_retrace_panel
  35. PANEL *_nc_retrace_panel(
  36. PANEL *pan)
  37. { return(*(PANEL **)0); }
  38. #undef _nc_my_visbuf
  39. const char *_nc_my_visbuf(
  40. const void *ptr)
  41. { return(*(const char **)0); }
  42. #undef _nc_dPanel
  43. void _nc_dPanel(
  44. const char *text,
  45. const PANEL *pan)
  46. { /* void */ }
  47. #undef _nc_dStack
  48. void _nc_dStack(
  49. const char *fmt,
  50. int num,
  51. const PANEL *pan)
  52. { /* void */ }
  53. #undef _nc_Wnoutrefresh
  54. void _nc_Wnoutrefresh(
  55. const PANEL *pan)
  56. { /* void */ }
  57. #undef _nc_Touchpan
  58. void _nc_Touchpan(
  59. const PANEL *pan)
  60. { /* void */ }
  61. #undef _nc_Touchline
  62. void _nc_Touchline(
  63. const PANEL *pan,
  64. int start,
  65. int count)
  66. { /* void */ }
  67. /* ./p_above.c */
  68. #undef panel_above
  69. PANEL *panel_above(
  70. const PANEL *pan)
  71. { return(*(PANEL **)0); }
  72. /* ./p_below.c */
  73. #undef panel_below
  74. PANEL *panel_below(
  75. const PANEL *pan)
  76. { return(*(PANEL **)0); }
  77. /* ./p_bottom.c */
  78. #undef bottom_panel
  79. int bottom_panel(
  80. PANEL *pan)
  81. { return(*(int *)0); }
  82. /* ./p_delete.c */
  83. #undef del_panel
  84. int del_panel(
  85. PANEL *pan)
  86. { return(*(int *)0); }
  87. /* ./p_hide.c */
  88. #undef hide_panel
  89. int hide_panel(
  90. PANEL *pan)
  91. { return(*(int *)0); }
  92. /* ./p_hidden.c */
  93. #undef panel_hidden
  94. int panel_hidden(
  95. const PANEL *pan)
  96. { return(*(int *)0); }
  97. /* ./p_move.c */
  98. #undef move_panel
  99. int move_panel(
  100. PANEL *pan,
  101. int starty,
  102. int startx)
  103. { return(*(int *)0); }
  104. /* ./p_new.c */
  105. #undef new_panel
  106. PANEL *new_panel(
  107. WINDOW *win)
  108. { return(*(PANEL **)0); }
  109. /* ./p_replace.c */
  110. #undef replace_panel
  111. int replace_panel(
  112. PANEL *pan,
  113. WINDOW *win)
  114. { return(*(int *)0); }
  115. /* ./p_show.c */
  116. #undef show_panel
  117. int show_panel(
  118. PANEL *pan)
  119. { return(*(int *)0); }
  120. /* ./p_top.c */
  121. #undef top_panel
  122. int top_panel(
  123. PANEL *pan)
  124. { return(*(int *)0); }
  125. /* ./p_update.c */
  126. #undef update_panels
  127. void update_panels(void)
  128. { /* void */ }
  129. /* ./p_user.c */
  130. #undef set_panel_userptr
  131. int set_panel_userptr(
  132. PANEL *pan,
  133. void *uptr)
  134. { return(*(int *)0); }
  135. #undef panel_userptr
  136. void *panel_userptr(
  137. const PANEL *pan)
  138. { return(*(void **)0); }
  139. /* ./p_win.c */
  140. #undef panel_window
  141. WINDOW *panel_window(
  142. const PANEL *pan)
  143. { return(*(WINDOW **)0); }