module Stench::WinBase

Constants

ATOM
BLACK_BRUSH
BOOL
BYTE
CW_USEDEFAULT
DWORD
GCL_HBRBACKGROUND
GWL_HINSTANCE
HWND
IDC_ARROW
IDI_APPLICATION
IMAGE_CURSOR
IMAGE_ICON
INT
LONG
LONG_PTR
LPARAM
LPCTSTR
LPVOID
LRESULT
LR_SHARED
MB_OK
NULL
POINTER
TRUE
UINT
ULONG
ULONG_PTR
VOID
WHITE_BRUSH
WM_DESTROY
WM_LBUTTONDOWN
WM_RBUTTONUP
WNDPROC
WPARAM
WS_EX_LEFT
WS_OVERLAPPEDWINDOW
WS_VISIBLE

Public Class Methods

_func(*args) click to toggle source
# File lib/stench.rb, line 10
def self._func(*args)
  attach_function *args
  case args.size
    when 3
      module_function args[0]
    when 4
      module_function args[0]
      alias_method(args[1], args[0])
      module_function args[1]
  end
end