-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
73 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
name: build | ||
|
||
on: | ||
push: | ||
branches: ["master"] | ||
pull_request: | ||
branches: ["master"] | ||
|
||
env: | ||
# Path to the solution file relative to the root of the project. | ||
SOLUTION_FILE_PATH: . | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
strategy: | ||
matrix: | ||
configuration: [Release, Debug] | ||
platform: [x86, ARM] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Add MSBuild to PATH | ||
uses: microsoft/[email protected] | ||
|
||
- name: Restore NuGet packages | ||
working-directory: ${{env.GITHUB_WORKSPACE}} | ||
run: nuget restore ${{env.SOLUTION_FILE_PATH}} | ||
|
||
- name: Build | ||
working-directory: ${{env.GITHUB_WORKSPACE}} | ||
# Add additional options to the MSBuild command line here (like platform or verbosity level). | ||
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference | ||
run: msbuild /m /p:Configuration=${{matrix.configuration}} /p:Platform=${{matrix.platform}} ${{env.SOLUTION_FILE_PATH}} | ||
|
||
- name: Upload Artifcats | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: wcecl-build-${{matrix.configuration}}-${{matrix.platform}} | ||
path: ${{env.SOLUTION_FILE_PATH}}/build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
# Windows CE Compatibility Layer [![Build status](https://ci.appveyor.com/api/projects/status/93fytq537hcb2nw9?svg=true)](https://ci.appveyor.com/project/dz333n/wcecl) | ||
### WinCE API Wrapper | ||
# Windows CE Compatibility Layer (WCECL) | ||
|
||
[Watch YouTube video](https://youtu.be/igz8mekvr8A) | ||
![Improvised Logo](logo.png) | ||
|
||
# What is this? | ||
This library is designed to wrap Windows CE API using Win32 functions. This allows to run Windows CE executables in Win32 environment. Visit our [wiki](https://github.com/feel-the-dz3n/wcecl/wiki) for details. | ||
Use WCECL to run original Windows CE applications on desktop Windows. | ||
|
||
# Credits | ||
- Created by [Yaroslav Kibysh / Dz3n](https://github.com/feel-the-dz3n) | ||
- [Nikita Ivanov / osdever](https://github.com/osdeverr) | ||
- Special thanks to [Stanislav Motylkov / Stas'M](https://github.com/binarymaster), who inspired me to make this. | ||
## This project includes | ||
|
||
- **COREDLL**: a library that wraps Windows CE APIs and redirects calls to desktop Win32 APIs | ||
- **SubsystemTool**: a program that allows you to modify subsystem attributes in portable executables (.EXEs) | ||
|
||
⚠️ The project is at an early stage of development. Only one application has been confirmed to work so far. | ||
|
||
Visit project [wiki](https://github.com/dz333n/wcecl/wiki) for details. | ||
|
||
## Downloads | ||
|
||
Open workflow status link below and download the artifacts from the "Upload Artifacts" section for your desired configuration and platform. | ||
|
||
[![build](https://github.com/dz333n/wcecl/actions/workflows/build.yml/badge.svg)](https://github.com/dz333n/wcecl/actions/workflows/build.yml) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters