Sha256: 626fc6ab09e2bc762ac789dd1a3a5cafad401e2ef37f195ea5375ed32e6a4a0e

Contents?: true

Size: 404 Bytes

Versions: 1

Compression:

Stored size: 404 Bytes

Contents

# typedef struct panel
# {
#   WINDOW *win;
#   struct panel *below;
#   struct panel *above;
#   NCURSES_CONST void *user;
# } PANEL;

module FFI
  module NCurses
    module PanelStruct
      class Panel < FFI::Struct
        layout \
        :win, :pointer,   # WINDOW*
        :below, :pointer, # PANEL*
        :above, :pointer, # PANEL*
        :user, :pointer   # void*
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ffi-ncurses-0.4.0 lib/ffi-ncurses/panel.rb