chore: remove unused Common/Common.h

This commit is contained in:
sithlord48 2025-11-06 15:42:36 -05:00 committed by Chris Rizzitello
parent 19814c61d7
commit 1f6f6d5dc6
2 changed files with 0 additions and 34 deletions

View File

@ -12,7 +12,6 @@ unset(CLIENT_BINARY)
unset(SERVER_BINARY)
add_library(common STATIC
Common.h
ExitCodes.h
I18N.h
I18N.cpp

View File

@ -1,33 +0,0 @@
/*
* Deskflow -- mouse and keyboard sharing utility
* SPDX-FileCopyrightText: (C) 2010 - 2018, 2024 - 2025 Symless Ltd.
* SPDX-FileCopyrightText: (C) 2002 - 2007 Chris Schoeneman
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
*/
#pragma once
#if !SYSAPI_WIN32
#if HAVE_CONFIG_H
#include "Config.h"
#else
#error "config.h missing"
#endif
#endif
// define nullptr
#include <stddef.h>
// make assert available since we use it a lot
#include <assert.h>
#include <stdint.h>
#include <stdlib.h> // IWYU pragma: keep
#include <string.h> // IWYU pragma: keep
// defined in Carbon
#if !defined(__MACTYPES__)
#if defined(__APPLE__)
#include <CoreServices/CoreServices.h>
#else
#endif
#endif