Displaying 3 results from an estimated 3 matches for "getidlist".
2008 Dec 12
0
[PATCH 1/1] COM32: lua - add pci library
Back again,
the included patch adds pci functions from com32/modules/pcitest.c to lua.
Example:
-- get device info
pciinfo = pci.getinfo()
-- get plain text device description
pciids = pci.getidlist("/pci.ids")
-- list all pci busses
for bind,businfo in pairs(pciinfo) do
print("Bus: " .. bind .. " Devices:")
-- list all devices on bus
for dind,device in pairs(businfo) do
-- search for device description
search = device['vendor'] .. device...
2007 Mar 02
0
Wine release 0.9.32
...s.drv: Constify some variables.
wininet: Constify some variables.
winspool.drv: Eliminate some W-to-A cross calls.
Aric Stewart (11):
imm32: Implement stubs for ImmGetImeMenuItemsA and ImmGetImeMenuItemsW.
comctl32: Implement LVM_SETUNICODEFORMAT.
shell32: IShellLink::GetIDList fix.
imm32: Implement GSC_RESULTCLAUSE.
imm32: Corrections to the message ordering for IME input.
imm32: Properly send WM_IME_NOTIFY using SendMessage.
gdi32: Allow for loading of multibyte font name replacements.
gdi32: Select correct replacement from ttc file....
2013 Oct 15
23
[PATCH 00/21] Upgrade to Lua 5.2.2, add filesystem module and get_key binding
Hi,
This series targets automatic boot menu generation, but most of it
is the Lua upgrade, because I got tired reading deprecated API docs.
It's mostly a straightforward forward port of the earlier Syslinux
specific changes to Lua 5.1, except that:
* I chose the add a stub getenv() implementation to the COM32 API
instead of #ifdefing out all the references in Lua, and
* I kept oslib