Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8609fef5
Commit
8609fef5
authored
Aug 23, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Sep 05, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows.applicationmodel/tests: Test IPackageManager_RegisterPackageAsync.
parent
19c1cc1c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
88 additions
and
3 deletions
+88
-3
Makefile.in
dlls/windows.applicationmodel/tests/Makefile.in
+7
-3
application.c
dlls/windows.applicationmodel/tests/application.c
+33
-0
appxmanifest.xml
dlls/windows.applicationmodel/tests/appxmanifest.xml
+26
-0
model.c
dlls/windows.applicationmodel/tests/model.c
+0
-0
resource.rc
dlls/windows.applicationmodel/tests/resource.rc
+22
-0
No files found.
dlls/windows.applicationmodel/tests/Makefile.in
View file @
8609fef5
TESTDLL
=
windows.applicationmodel.dll
IMPORTS
=
combase
IMPORTS
=
combase
advapi32
C_SRCS
=
\
model.c
application_EXTRADLLFLAGS
=
-mconsole
SOURCES
=
\
application.c
\
model.c
\
resource.rc
dlls/windows.applicationmodel/tests/application.c
0 → 100644
View file @
8609fef5
/*
* Copyright (C) 2023 Rémi Bernon for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#if 0
#pragma makedep testdll
#endif
#define COBJMACROS
#include <stddef.h>
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
int
main
(
int
argc
,
char
const
*
argv
[]
)
{
return
0
;
}
dlls/windows.applicationmodel/tests/appxmanifest.xml
0 → 100644
View file @
8609fef5
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns=
"http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:uap=
"http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:rescap=
"http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
>
<Identity
Name=
"WineTest"
Publisher=
"CN=Wine, O=The Wine Project, C=US"
Version=
"1.0.0.0"
ProcessorArchitecture=
"neutral"
/>
<Properties>
<DisplayName>
WineTest
</DisplayName>
<PublisherDisplayName>
The Wine Project
</PublisherDisplayName>
<Description>
Reserved
</Description>
<Logo>
logo.png
</Logo>
</Properties>
<Resources>
<Resource
Language=
"en-us"
/>
</Resources>
<Dependencies>
<TargetDeviceFamily
Name=
"Windows.Desktop"
MinVersion=
"10.0.0.0"
MaxVersionTested=
"10.0.65535.0"
/>
</Dependencies>
<Capabilities>
<rescap:Capability
Name=
"runFullTrust"
/>
</Capabilities>
<Applications>
<Application
Id=
"WineTest"
Executable=
"application.exe"
EntryPoint=
"Windows.FullTrustApplication"
>
<uap:VisualElements
BackgroundColor=
"transparent"
DisplayName=
"WineTest"
Square150x150Logo=
"logo.png"
Square44x44Logo=
"logo.png"
Description=
"WineTest"
/>
</Application>
</Applications>
</Package>
dlls/windows.applicationmodel/tests/model.c
View file @
8609fef5
This diff is collapsed.
Click to expand it.
dlls/windows.applicationmodel/tests/resource.rc
0 → 100644
View file @
8609fef5
/*
* Copyright 2022 Rémi Bernon for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "windef.h"
/* @makedep: appxmanifest.xml */
appxmanifest.xml RCDATA appxmanifest.xml
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment