Add Dreamland support
- Install vcrun2019 and d3dcompiler_47 dependencies for Unity 2021.3 - Clean up malformed {app}\ paths created by innoextract - Create music directory with readme files for custom music support - NVDA DLL replacement handled automatically by update_nvda_dlls() - Game works with default wine start launcher 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
||||
*.x.c
|
||||
*.x
|
||||
music/
|
||||
|
@@ -4,6 +4,147 @@ export WINEPREFIX="$HOME/.local/wine32"
|
||||
download https://scwl-1251129685.cos.ap-shanghai.myqcloud.com/dreamland/Win/DreamLandSetup.exe
|
||||
|
||||
install_wine_bottle
|
||||
winetricks -q vcrun2019 d3dcompiler_47
|
||||
|
||||
install_with_progress innoextract "Extracting game files..." --output-dir "$WINEPREFIX/drive_c/Program Files/DreamLand" "${cache}/DreamLandSetup.exe"
|
||||
|
||||
# Clean up malformed paths with literal {app}\ in filenames created by innoextract
|
||||
find "$WINEPREFIX/drive_c/Program Files/DreamLand" -name '{app}\*' -type f -delete 2>/dev/null || true
|
||||
|
||||
# Create music directory with readme files for custom music support (in game root, not app subdir)
|
||||
mkdir -p "$WINEPREFIX/drive_c/Program Files/DreamLand/music"
|
||||
cat > "$WINEPREFIX/drive_c/Program Files/DreamLand/music/readme.txt" << 'EOF'
|
||||
Placing background music files in this directory can replace some background music played in the game. It supports WAV and OGG formats, and it is recommended to use WAV format for smoother playback.
|
||||
login = Login interface
|
||||
fight1 = Fighting state 1
|
||||
fight2 = Fighting state 2
|
||||
fight3 = Fighting state 3
|
||||
linan = Lin'an City
|
||||
longzangguyuan = Longcang Ancient Plain
|
||||
xuanjingbingyuan = Xuanjing Ice Field
|
||||
changjiangshuidao = Yangtze River Waterway
|
||||
shenxiaotiangong = Shenxiao Heavenly Palace
|
||||
hemingshan = Heming Mountain
|
||||
chamagudao = Tea-horse Ancient Passage
|
||||
dajianlu = Dajianlu
|
||||
diexueshahai = Bloody Desert
|
||||
guilinbashu = Bagui Forest
|
||||
hanquan = Chilly Spring
|
||||
sizhouyuan = Sizhou Temple
|
||||
minhai = Min Sea
|
||||
xueyugaoyuan = Snowy plateau
|
||||
caiji = Collecting on Snowy plateau
|
||||
legend = Dreamland Legend
|
||||
douzhanjing = DouZhanJing
|
||||
shengsijing = Alive-Dead Land
|
||||
zhenwuhuanjing = Zhenwu Fairyland
|
||||
juezhanzhigu = Valley of Decisive battle
|
||||
wuzhezhidian = The end of martial
|
||||
shanshuozhiyuan = Shining Abyss
|
||||
fenzhengshengtan = Altar of Dispute
|
||||
zhanzhengyaosai = War fortress
|
||||
luorihuaguang = Sunset Valley - Light
|
||||
luorianying = Sunset Valley - Shadow
|
||||
luorihedao = Sunset Valley - River course
|
||||
luorirongyan = Sunset Valley - Lava Behemoth
|
||||
luorianmie = Sunset Valley - Dim ancient dragon
|
||||
taoshadao = Washing Island
|
||||
taoshadaow = Washing Island - Flood
|
||||
bangpai = Gang
|
||||
bangzhan = Gang War
|
||||
huabingchang = Skating Rink
|
||||
kuafudating = Cross Server Hall
|
||||
shilianzhidi = Trial Land
|
||||
lunhuizhidi = Land of Samsara
|
||||
suoyaota = Demon Tower
|
||||
taixuhuanjing = TaiXu HuanJing
|
||||
yizuchaoxue = Ant Hole
|
||||
guijingbingtan = Ghost Land
|
||||
taohuadao = Peach Blossom Island
|
||||
gaoshanliushui = High Mountain - Flowing Water
|
||||
beidilangyan = BeiDiLangYan
|
||||
quanzhenlundao = QuanZhenLunDao
|
||||
haishangxianke = Sea Guest
|
||||
wujiya = WuJiYa
|
||||
ruoshuiyu = RuoShuiYu
|
||||
ditaifu = DiTaiFu
|
||||
qiseta = Seven Color Tower
|
||||
huanlingzhen = Calling Array
|
||||
shamomigong = Desert Maze
|
||||
jingchanyuan = JingChanYuan
|
||||
guajingmiyuan = Divination Mirror
|
||||
lingyunhuanjing = LingYun Fairyland
|
||||
chaoyindong = Chaoyin Cave
|
||||
shengxiaoshiergong = Twelve Palaces of Zodiac
|
||||
guanxingtai = Star Watching Platform
|
||||
fushendian = FuShen Hall
|
||||
EOF
|
||||
|
||||
cat > "$WINEPREFIX/drive_c/Program Files/DreamLand/music/说明.txt" << 'EOF'
|
||||
在此目录下放入背景音乐文件可替换游戏中播放的游戏背景音乐,支持wav和ogg格式,建议使用wav格式,播放更加流畅
|
||||
login=登录
|
||||
fight1=战斗1
|
||||
fight2=战斗2
|
||||
fight3=战斗3
|
||||
linan=临安城
|
||||
longzangguyuan=龙藏古原
|
||||
xuanjingbingyuan=玄镜冰原
|
||||
changjiangshuidao=长江水道
|
||||
shenxiaotiangong=神霄天宫
|
||||
hemingshan=鹤鸣山
|
||||
chamagudao=茶马古道
|
||||
dajianlu=打箭炉
|
||||
diexueshahai=喋血沙海
|
||||
guilinbashu=桂林八树
|
||||
hanquan=寒泉
|
||||
sizhouyuan=泗州院
|
||||
minhai=闽海
|
||||
xueyugaoyuan=雪域高原
|
||||
caiji=雪域高原自动采集
|
||||
legend=迷梦传说
|
||||
douzhanjing=斗战境
|
||||
shengsijing=生死境
|
||||
zhenwuhuanjing=真武幻境
|
||||
juezhanzhigu=决战之谷
|
||||
wuzhezhidian=武者之巅
|
||||
shanshuozhiyuan=闪烁之渊
|
||||
fenzhengshengtan=纷争圣坛
|
||||
zhanzhengyaosai=战争要塞
|
||||
luorihuaguang=落日谷华光
|
||||
luorianying=落日谷暗影
|
||||
luorihedao=落日谷河道
|
||||
luorirongyan=落日谷熔岩巨兽
|
||||
luorianmie=落日谷黯灭古龙
|
||||
taoshadao=淘沙岛
|
||||
taoshadaow=淘沙岛水域
|
||||
bangpai=帮派
|
||||
bangzhan=帮派战
|
||||
huabingchang=滑冰场
|
||||
kuafudating=跨服大厅
|
||||
shilianzhidi=试炼之地
|
||||
lunhuizhidi=轮回之地
|
||||
suoyaota=锁妖塔
|
||||
taixuhuanjing=太虚幻境
|
||||
yizuchaoxue=蚁族巢穴
|
||||
guijingbingtan=鬼境冰潭
|
||||
taohuadao=桃花岛
|
||||
gaoshanliushui=高山流水
|
||||
beidilangyan=北地狼烟
|
||||
quanzhenlundao=全真论道
|
||||
haishangxianke=海上仙客
|
||||
wujiya=无稽崖
|
||||
ruoshuiyu=弱水域
|
||||
ditaifu=帝台府
|
||||
qiseta=七色塔
|
||||
huanlingzhen=唤灵阵
|
||||
shamomigong=沙漠迷宫
|
||||
jingchanyuan=净禅院
|
||||
guajingmiyuan=卦镜迷渊
|
||||
lingyunhuanjing=凌云幻境
|
||||
chaoyindong=潮音洞
|
||||
shengxiaoshiergong=生肖十二宫
|
||||
guanxingtai=观星台
|
||||
fushendian=缚神殿
|
||||
EOF
|
||||
|
||||
add_launcher "c:\Program Files\DreamLand\app\DreamLand.exe"
|
||||
|
125
CLAUDE.md
Normal file
125
CLAUDE.md
Normal file
@@ -0,0 +1,125 @@
|
||||
# CLAUDE.md
|
||||
|
||||
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
||||
|
||||
## Overview
|
||||
|
||||
Audiogame Manager is a bash-based installer and launcher for Windows audio games running under Wine on Linux. It provides an accessible interface for managing audio games specifically designed for blind and visually impaired users.
|
||||
|
||||
## Architecture
|
||||
|
||||
### Core Components
|
||||
|
||||
- **Main Script**: `audiogame-manager.sh` - Entry point with Wine32/64 bottle management and main menu system
|
||||
- **Includes Directory**: `.includes/` - Shared functionality modules
|
||||
- `functions.sh` - Core utilities (download, cache management, requirements checking)
|
||||
- `dialog-interface.sh` - UI abstraction layer supporting both console (dialog) and GUI (yad) modes
|
||||
- `bottle.sh` - Wine prefix management
|
||||
- `checkup.sh` - System dependency validation
|
||||
- `help.sh` - Help system
|
||||
- **Game Scripts**: `game-scripts/` - Individual game update/launch scripts
|
||||
- **Install Scripts**: `.install/` - Game installation scripts (100+ games supported)
|
||||
- **Speech Integration**: `speech/` - Voice and TTS management
|
||||
- `set-voice.sh` - Voice configuration with test functionality
|
||||
- NVDA and Cepstral installers
|
||||
- **Wine Integration**: `wine/` - Wine setup and dependency management
|
||||
|
||||
### Wine Architecture
|
||||
|
||||
The project uses dual Wine environments:
|
||||
- **Wine32**: For SAPI-dependent games (stored in `~/.local/wine32`)
|
||||
- **Wine64**: For modern games (stored in `~/.local/wine64`)
|
||||
|
||||
Wine32 version is controlled by `wineThirtyTwoVersion` variable in main script and auto-manages installation/updates.
|
||||
|
||||
### Interface System
|
||||
|
||||
Dialog interface automatically detects environment:
|
||||
- Console mode: Uses `dialog` for accessibility
|
||||
- GUI mode: Uses `yad` when DISPLAY is available
|
||||
- All UI functions are prefixed with `agm_` (audiogame manager)
|
||||
|
||||
## Development Commands
|
||||
|
||||
### System Check
|
||||
```bash
|
||||
./audiogame-manager.sh -c # Check system requirements and dependencies
|
||||
```
|
||||
|
||||
### Installation and Usage
|
||||
```bash
|
||||
./audiogame-manager.sh -i # Install games (interactive menu)
|
||||
./audiogame-manager.sh -h # Show help
|
||||
./audiogame-manager.sh # Launch installed games menu
|
||||
```
|
||||
|
||||
### Voice Testing
|
||||
```bash
|
||||
./speech/set-voice.sh # Configure and test voice settings
|
||||
```
|
||||
|
||||
### Dependency Management
|
||||
```bash
|
||||
# Check all required packages
|
||||
./.includes/checkup.sh packages
|
||||
|
||||
# Install Wine dependencies for different distros
|
||||
./wine/install-dependencies-arch.sh
|
||||
./wine/install-dependencies-debian.sh
|
||||
```
|
||||
|
||||
## Key Patterns and Conventions
|
||||
|
||||
### Error Handling
|
||||
- Functions return 0 for success, non-zero for failure
|
||||
- Critical errors vs warnings are clearly distinguished in checkup system
|
||||
- Progress feedback is provided for all long-running operations
|
||||
|
||||
### File Structure
|
||||
- Game installers follow naming convention: `.install/Game Name.sh`
|
||||
- Cache directory: `~/.local/share/audiogame-manager/cache/`
|
||||
- Wine bottles: `~/.local/wine32/` and `~/.local/wine64/`
|
||||
|
||||
### UI Functions
|
||||
All dialog functions in `.includes/dialog-interface.sh` follow pattern:
|
||||
- `agm_menu()` - Selection menus
|
||||
- `agm_msgbox()` - Message display
|
||||
- `agm_yesno()` - Confirmation dialogs
|
||||
- `agm_progressbox()` - Progress display
|
||||
- Functions automatically adapt to console/GUI environment
|
||||
|
||||
### Game Integration
|
||||
- Each game has both an installer (`.install/`) and optional update script (`game-scripts/`)
|
||||
- Games are categorized by engine type and requirements
|
||||
- SAPI games automatically use Wine32, others use Wine64
|
||||
|
||||
### Accessibility Features
|
||||
- Sound alerts using `sox` for important notifications
|
||||
- Screen reader compatibility through proper dialog usage
|
||||
- Keyboard navigation support throughout interface
|
||||
- Voice testing integrated into setup process
|
||||
|
||||
## Dependencies
|
||||
|
||||
### Critical (Required)
|
||||
- wine, curl, dialog, sox
|
||||
- Archive tools: 7z, cabextract, unzip, xz
|
||||
- winetricks (for Wine component management)
|
||||
|
||||
### Optional (Warnings if missing)
|
||||
- gawk (for game removal)
|
||||
- ocrdesktop (installer debugging)
|
||||
- qjoypad (gamepad support)
|
||||
- translate-shell, sqlite3, perl (translation features)
|
||||
- w3m (documentation viewing)
|
||||
- xclip, xdotool (X11 integration)
|
||||
|
||||
### Platform Support
|
||||
- x86_64 Linux (primary)
|
||||
- aarch64 with FEX-Emu (alternative Wine implementation)
|
||||
|
||||
## Testing
|
||||
- System requirements: `./audiogame-manager.sh -c`
|
||||
- Voice functionality: Use built-in voice test in `set-voice.sh`
|
||||
- Game installation: Test with simple games first before complex ones
|
||||
- Wine bottle integrity: Check `~/.local/wine32/system.reg` and `~/.local/wine64/system.reg` exist
|
382
poop.log
Normal file
382
poop.log
Normal file
@@ -0,0 +1,382 @@
|
||||
Updating /home/sektor/.local/wine64/drive_c/Program Files/shooter/accessible_output2/lib/nvdaControllerClient32.dll with nvdaControllerClient
|
||||
Updating /home/sektor/.local/wine64/drive_c/Program Files/shooter/accessible_output2/lib/nvdaControllerClient64.dll with nvdaControllerClient
|
||||
Updating /home/sektor/.local/wine32/drive_c/Program Files/DreamLand/app/DreamLand_Data/Plugins/x86/nvdaControllerClient32.dll with nvdaControllerClient32
|
||||
DEBUG: Using managed wine32 for LAUNCHER (WINE=/home/sektor/.local/share/audiogame-manager/wine32/bin/wine, PATH updated)
|
||||
launching wine-9.0
|
||||
[UnityMemory] Configuration Parameters - Can be set up in boot.config
|
||||
"memorysetup-bucket-allocator-granularity=16"
|
||||
"memorysetup-bucket-allocator-bucket-count=8"
|
||||
"memorysetup-bucket-allocator-block-size=4194304"
|
||||
"memorysetup-bucket-allocator-block-count=1"
|
||||
"memorysetup-main-allocator-block-size=16777216"
|
||||
"memorysetup-thread-allocator-block-size=16777216"
|
||||
"memorysetup-gfx-main-allocator-block-size=16777216"
|
||||
"memorysetup-gfx-thread-allocator-block-size=16777216"
|
||||
"memorysetup-cache-allocator-block-size=4194304"
|
||||
"memorysetup-typetree-allocator-block-size=2097152"
|
||||
"memorysetup-profiler-bucket-allocator-granularity=16"
|
||||
"memorysetup-profiler-bucket-allocator-bucket-count=8"
|
||||
"memorysetup-profiler-bucket-allocator-block-size=4194304"
|
||||
"memorysetup-profiler-bucket-allocator-block-count=1"
|
||||
"memorysetup-profiler-allocator-block-size=16777216"
|
||||
"memorysetup-profiler-editor-allocator-block-size=1048576"
|
||||
"memorysetup-temp-allocator-size-main=4194304"
|
||||
"memorysetup-job-temp-allocator-block-size=2097152"
|
||||
"memorysetup-job-temp-allocator-block-size-background=1048576"
|
||||
"memorysetup-job-temp-allocator-reduction-small-platforms=262144"
|
||||
"memorysetup-temp-allocator-size-background-worker=32768"
|
||||
"memorysetup-temp-allocator-size-job-worker=262144"
|
||||
"memorysetup-temp-allocator-size-preload-manager=262144"
|
||||
"memorysetup-temp-allocator-size-nav-mesh-worker=65536"
|
||||
"memorysetup-temp-allocator-size-audio-worker=65536"
|
||||
"memorysetup-temp-allocator-size-cloud-worker=32768"
|
||||
"memorysetup-temp-allocator-size-gfx=262144"
|
||||
0124:fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION
|
||||
0124:fixme:dxgi:DXGID3D10CreateDevice Ignoring flags 0x20.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:wbemprox:client_security_SetBlanket 74152850, 08CA8F68, 10, 0, (null), 3, 3, 00000000, 0
|
||||
0124:fixme:wbemprox:client_security_Release 74152850
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Returning fake Options support data.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 29, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 61, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 49, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 28, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 63, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 51, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 31, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 62, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 50, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 30, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 64, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 52, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 32, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 56, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 35, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 11, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 58, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 37, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 13, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 57, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 36, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 12, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 59, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 38, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 14, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 42, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 17, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 7, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 3, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 43, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 18, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 8, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 4, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 54, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 34, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 10, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 41, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 16, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 6, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 2, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 61, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 65, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 56, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 91, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 87, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 115, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 85, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 86, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 67, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 26, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 24, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 25, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 89, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 29, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 28, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 2, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 55, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 45, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 40, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 20, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 62, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 72, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 71, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 75, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 74, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 78, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 77, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 80, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 81, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 83, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 84, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 95, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 96, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 99, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 98, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 107, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 45, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 56, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFormatSupport iface 00A1A128, format 107, format_support 0030F648 partial-stub!
|
||||
0124:fixme:d3d:wined3d_check_device_multisample_type multisample_type 32 not handled yet.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Unhandled feature 0xe.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Returning fake Options support data.
|
||||
0124:fixme:dxgi:dxgi_factory_IsWindowedStereoEnabled iface 08CA6258 stub!
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Returning fake Options1 support data.
|
||||
0124:fixme:d3d11:d3d11_device_CheckFeatureSupport Returning fake threading support data.
|
||||
0288:fixme:kernelbase:AppPolicyGetThreadInitializationType FFFFFFFA, 14DBFF18
|
||||
0288:fixme:avrt:AvSetMmThreadCharacteristicsW (L"Audio",14DBFEE4): stub
|
||||
0124:fixme:dxgi:DXGID3D10CreateDevice Ignoring flags 0x820.
|
||||
0124:fixme:d3d11:d3d10_multithread_SetMultithreadProtected iface 15A988B8, enable 0x1 stub!
|
||||
027c:fixme:dxgi:dxgi_resource_GetSharedHandle iface 08CF2004, shared_handle 1473EB10 stub!
|
||||
0124:fixme:system:NtUserGetDisplayConfigBufferSizes only returning active paths
|
||||
0124:fixme:system:NtUserQueryDisplayConfig flags 0x4, paths_count 0x30fca4, paths 0x6a60010, modes_count 0x30fc84, modes 0x6a60070, topology_id 0x30fc08 semi-stub
|
||||
0124:fixme:system:NtUserQueryDisplayConfig only returning active paths
|
||||
0124:fixme:system:NtUserQueryDisplayConfig setting toplogyid to DISPLAYCONFIG_TOPOLOGY_INTERNAL
|
||||
0124:fixme:dxgi:dxgi_output_GetDisplayModeList iface 15B2E970, format DXGI_FORMAT_R8G8B8A8_UNORM, flags 0, mode_count 0030FAF8, modes 00000000 partial stub!
|
||||
0124:fixme:dxgi:dxgi_output_GetDisplayModeList iface 15B2E970, format DXGI_FORMAT_R8G8B8A8_UNORM, flags 0, mode_count 0030FAF8, modes 06A60010 partial stub!
|
||||
0124:fixme:system:NtUserQueryDisplayConfig flags 0x2, paths_count 0x30faec, paths 0x6a60010, modes_count 0x30fae8, modes 0x6a60070, topology_id (nil) semi-stub
|
||||
0124:fixme:dxgi:dxgi_output_GetDesc1 iface 15B2E950, desc 0030FA10 semi-stub!
|
||||
0124:fixme:dxgi:d3d11_swapchain_GetDesc Ignoring ScanlineOrdering and Scaling.
|
||||
0124:fixme:dxgi:d3d11_swapchain_ResizeBuffers Ignoring flags 0x2.
|
||||
0124:fixme:win:RegisterTouchWindow hwnd 00020054, flags 0 stub!
|
||||
0124:fixme:dxgi:dxgi_output_GetDesc1 iface 15B2B468, desc 0030F458 semi-stub!
|
||||
0124:fixme:dxgi:dxgi_output_GetDesc1 iface 15B2B468, desc 0030F6B4 semi-stub!
|
||||
027c:fixme:d3d11:d3d_rasterizer_state_init Ignoring MultisampleEnable 0x1.
|
||||
0278:fixme:d3d:state_linepattern_w Setting line patterns is not supported in OpenGL core contexts.
|
||||
0124:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0030E274, 0030E284 0030E278
|
||||
0124:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0030E274 0030E284 0030E278) returning a dummy value (current locale)
|
||||
0124:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0030E274, 0030E284 0030E278
|
||||
0124:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0030E274 0030E284 0030E278) returning a dummy value (current locale)
|
||||
0124:fixme:shell:InitNetworkAddressControl stub
|
||||
02b4:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031F23C, 0031F24C 0031F240
|
||||
02b4:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031F23C 0031F24C 0031F240) returning a dummy value (current locale)
|
||||
02b4:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031FB48, 0031FB58 0031FB4C
|
||||
02b4:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031FB48 0031FB58 0031FB4C) returning a dummy value (current locale)
|
||||
02b4:fixme:process:RegisterApplicationRestart (L"65678 40 6 /RestartByRestartManager:D2FB8190-4834-4e28-ABA2-0D39FDDDBE0E",0)
|
||||
02bc:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031F23C, 0031F24C 0031F240
|
||||
02bc:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031F23C 0031F24C 0031F240) returning a dummy value (current locale)
|
||||
02bc:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031FB48, 0031FB58 0031FB4C
|
||||
02bc:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031FB48 0031FB58 0031FB4C) returning a dummy value (current locale)
|
||||
02bc:fixme:process:RegisterApplicationRestart (L"65678 51 6 /RestartByRestartManager:B513C97F-A7C2-49c7-A963-1401DA4FFA22",0)
|
||||
02c4:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031F23C, 0031F24C 0031F240
|
||||
02c4:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031F23C 0031F24C 0031F240) returning a dummy value (current locale)
|
||||
02c4:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031FB48, 0031FB58 0031FB4C
|
||||
02c4:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031FB48 0031FB58 0031FB4C) returning a dummy value (current locale)
|
||||
02c4:fixme:process:RegisterApplicationRestart (L"65678 39 6 /RestartByRestartManager:6DA40BBF-A25A-4ccb-93F2-077A5E1E8D51",0)
|
||||
02cc:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031F23C, 0031F24C 0031F240
|
||||
02cc:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031F23C 0031F24C 0031F240) returning a dummy value (current locale)
|
||||
02cc:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031FB48, 0031FB58 0031FB4C
|
||||
02cc:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031FB48 0031FB58 0031FB4C) returning a dummy value (current locale)
|
||||
02cc:fixme:process:RegisterApplicationRestart (L"65678 38 6 /RestartByRestartManager:80C8293E-4C84-4eea-A97F-447C895526DA",0)
|
||||
02b4:fixme:shell:InitNetworkAddressControl stub
|
||||
02b4:err:ole:com_get_class_object class {d67c0280-c743-11cd-80e5-00aa003e4b50} not registered
|
||||
02b4:err:ole:com_get_class_object class {d67c0280-c743-11cd-80e5-00aa003e4b50} not registered
|
||||
02b4:err:ole:create_server class {d67c0280-c743-11cd-80e5-00aa003e4b50} not registered
|
||||
02b4:fixme:ole:com_get_class_object CLSCTX_REMOTE_SERVER not supported
|
||||
02b4:err:ole:com_get_class_object no class object {d67c0280-c743-11cd-80e5-00aa003e4b50} could be created for context 0x17
|
||||
02bc:fixme:shell:InitNetworkAddressControl stub
|
||||
02d4:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031F23C, 0031F24C 0031F240
|
||||
02d4:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031F23C 0031F24C 0031F240) returning a dummy value (current locale)
|
||||
02d4:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031FB48, 0031FB58 0031FB4C
|
||||
02d4:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031FB48 0031FB58 0031FB4C) returning a dummy value (current locale)
|
||||
02d4:fixme:process:RegisterApplicationRestart (L"65724 40 6 /RestartByRestartManager:E3CF571C-FC88-4957-ADD4-CDADDAB8D7AA",0)
|
||||
02c4:fixme:shell:InitNetworkAddressControl stub
|
||||
02dc:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031F23C, 0031F24C 0031F240
|
||||
02dc:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031F23C 0031F24C 0031F240) returning a dummy value (current locale)
|
||||
02cc:fixme:shell:InitNetworkAddressControl stub
|
||||
02dc:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031FB48, 0031FB58 0031FB4C
|
||||
02dc:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031FB48 0031FB58 0031FB4C) returning a dummy value (current locale)
|
||||
02dc:fixme:process:RegisterApplicationRestart (L"65724 51 6 /RestartByRestartManager:7C6827F0-8A29-4743-83F6-F185A0A2EF71",0)
|
||||
02e4:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031F23C, 0031F24C 0031F240
|
||||
02e4:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031F23C 0031F24C 0031F240) returning a dummy value (current locale)
|
||||
02e4:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031FB48, 0031FB58 0031FB4C
|
||||
02e4:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031FB48 0031FB58 0031FB4C) returning a dummy value (current locale)
|
||||
02e4:fixme:process:RegisterApplicationRestart (L"65724 39 6 /RestartByRestartManager:863EE475-3E9A-46fc-96B5-505132EB24FF",0)
|
||||
02ec:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031F23C, 0031F24C 0031F240
|
||||
02ec:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031F23C 0031F24C 0031F240) returning a dummy value (current locale)
|
||||
02ec:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 0031FB48, 0031FB58 0031FB4C
|
||||
02ec:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 0031FB48 0031FB58 0031FB4C) returning a dummy value (current locale)
|
||||
02ec:fixme:process:RegisterApplicationRestart (L"65724 38 6 /RestartByRestartManager:236AAAEA-DA0E-4c27-8335-596D85E44636",0)
|
||||
02d4:fixme:shell:InitNetworkAddressControl stub
|
||||
02d4:err:ole:com_get_class_object class {d67c0280-c743-11cd-80e5-00aa003e4b50} not registered
|
||||
02d4:err:ole:com_get_class_object class {d67c0280-c743-11cd-80e5-00aa003e4b50} not registered
|
||||
02d4:err:ole:create_server class {d67c0280-c743-11cd-80e5-00aa003e4b50} not registered
|
||||
02d4:fixme:ole:com_get_class_object CLSCTX_REMOTE_SERVER not supported
|
||||
02d4:err:ole:com_get_class_object no class object {d67c0280-c743-11cd-80e5-00aa003e4b50} could be created for context 0x17
|
||||
02dc:fixme:shell:InitNetworkAddressControl stub
|
||||
02e4:fixme:shell:InitNetworkAddressControl stub
|
||||
02ec:fixme:shell:InitNetworkAddressControl stub
|
||||
02fc:fixme:ver:GetCurrentPackageId (0175FF10 00000000): stub
|
||||
02bc:fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION
|
||||
0308:fixme:ver:GetCurrentPackageId (0175FF10 00000000): stub
|
||||
030c:fixme:avrt:AvSetMmThreadCharacteristicsW (L"Audio",14DBFEE4): stub
|
||||
0124:fixme:nls:GetFileMUIPath stub: 0x10, L"C:\\windows\\system32\\tzres.dll", (null), 0030E5D8, 156E5310, 0030E5DC, 0030E5D0
|
||||
0124:fixme:nls:GetFileMUIPath stub: 0x10, L"C:\\windows\\system32\\tzres.dll", (null), 0030E5D8, 156E5310, 0030E5DC, 0030E5D0
|
||||
0124:fixme:nls:GetFileMUIPath stub: 0x10, L"C:\\windows\\system32\\tzres.dll", (null), 0030E5D8, 156E5310, 0030E5DC, 0030E5D0
|
||||
0124:fixme:system:NtUserQueryDisplayConfig flags 0x2, paths_count 0x30f91c, paths 0x6a60010, modes_count 0x30f918, modes 0x6a60070, topology_id (nil) semi-stub
|
||||
0124:fixme:dxgi:dxgi_output_GetDesc1 iface 18605CC0, desc 0030F2C0 semi-stub!
|
||||
0124:fixme:dxgi:dxgi_output_GetDesc1 iface 18605CC0, desc 0030F840 semi-stub!
|
||||
0124:fixme:dxgi:d3d11_swapchain_GetDesc Ignoring ScanlineOrdering and Scaling.
|
||||
0124:fixme:dxgi:d3d11_swapchain_ResizeBuffers Ignoring flags 0x2.
|
||||
0124:fixme:dxgi:dxgi_output_GetDesc1 iface 1865EDC0, desc 0030FC08 semi-stub!
|
||||
0124:fixme:dxgi:d3d11_swapchain_GetDesc Ignoring ScanlineOrdering and Scaling.
|
||||
0124:fixme:dxgi:d3d11_swapchain_ResizeBuffers Ignoring flags 0x2.
|
||||
012c:fixme:kernelbase:AppPolicyGetProcessTerminationMethod FFFFFFFA, 0031FECC
|
||||
0368:fixme:kernelbase:AppPolicyGetProcessTerminationMethod FFFFFFFA, 0031FECC
|
||||
02b4:fixme:ver:GetCurrentPackageId (0031FEAC 00000000): stub
|
||||
02c4:fixme:ver:GetCurrentPackageId (0031FEAC 00000000): stub
|
||||
02cc:fixme:ver:GetCurrentPackageId (0031FEAC 00000000): stub
|
||||
02d4:fixme:ver:GetCurrentPackageId (0031FEAC 00000000): stub
|
||||
02e4:fixme:ver:GetCurrentPackageId (0031FEAC 00000000): stub
|
||||
02ec:fixme:ver:GetCurrentPackageId (0031FEAC 00000000): stub
|
Reference in New Issue
Block a user