mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 22:48:19 +00:00
client: remove splash image
This commit is contained in:
parent
68fb440129
commit
76fc1dd847
@ -52,7 +52,6 @@ END
|
||||
// Bitmap
|
||||
//
|
||||
|
||||
SPLASH_IMAGE_RES_ID BITMAP "splash.bmp"
|
||||
INFO_IMAGE_RES_ID BITMAP "static_title.bmp"
|
||||
ALT_IMAGE_RES_ID BITMAP "sticky_alt.bmp"
|
||||
|
||||
|
||||
@ -638,10 +638,6 @@
|
||||
RelativePath=".\spicec.exe.manifest"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\splash.bmp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\static_title.bmp"
|
||||
>
|
||||
|
||||
@ -3,13 +3,12 @@
|
||||
// Used by redc.rc
|
||||
//
|
||||
#define RED_ICON_RES_ID 5
|
||||
#define SPLASH_IMAGE_RES_ID 101
|
||||
#define INFO_IMAGE_RES_ID 102
|
||||
#define IDI_ICON_APPLICATION 103
|
||||
#define ALT_IMAGE_RES_ID 104
|
||||
|
||||
// Next default values for new objects
|
||||
//
|
||||
//
|
||||
#ifdef APSTUDIO_INVOKED
|
||||
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||
#define _APS_NEXT_RESOURCE_VALUE 106
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 900 KiB |
@ -1,7 +1,6 @@
|
||||
EXTRA_DIST = \
|
||||
info_image.c \
|
||||
red_icon.c \
|
||||
splash_image.c \
|
||||
alt_image.c \
|
||||
$(NULL)
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -18,15 +18,6 @@
|
||||
#include "common.h"
|
||||
#include "resource.h"
|
||||
|
||||
#include "images/splash_image.c"
|
||||
|
||||
static const PixmapHeader splash_image = {
|
||||
(uint8_t *)_splash_image.pixel_data,
|
||||
_splash_image.width,
|
||||
_splash_image.height,
|
||||
_splash_image.width * 4,
|
||||
};
|
||||
|
||||
#include "images/info_image.c"
|
||||
|
||||
static const PixmapHeader info_image = {
|
||||
@ -51,7 +42,6 @@ typedef struct ResImage {
|
||||
} ResImage;
|
||||
|
||||
static const ResImage res_image_map[] = {
|
||||
{ SPLASH_IMAGE_RES_ID, &splash_image},
|
||||
{ INFO_IMAGE_RES_ID, &info_image},
|
||||
{ ALT_IMAGE_RES_ID, &alt_image},
|
||||
{0, NULL},
|
||||
|
||||
@ -18,7 +18,6 @@
|
||||
#ifndef _H_RED_RESOURCES
|
||||
#define _H_RED_RESOURCES
|
||||
|
||||
#define SPLASH_IMAGE_RES_ID 1
|
||||
#define INFO_IMAGE_RES_ID 2
|
||||
#define RED_ICON_RES_ID 3
|
||||
#define ALT_IMAGE_RES_ID 4
|
||||
|
||||
Loading…
Reference in New Issue
Block a user