Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
0a84291c
Kaydet (Commit)
0a84291c
authored
May 05, 2017
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
extract string typedefs to a shared file
Change-Id: I6e5d7c828f56b6a3f562ed8a9dd5f63a9d603ce0
üst
f8952eb7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
14 deletions
+28
-14
types.hxx
onlineupdate/inc/types.hxx
+25
-0
readstrings.h
onlineupdate/source/update/common/readstrings.h
+1
-6
archivereader.h
onlineupdate/source/update/updater/archivereader.h
+1
-6
progressui.h
onlineupdate/source/update/updater/progressui.h
+1
-2
No files found.
onlineupdate/inc/types.hxx
0 → 100644
Dosyayı görüntüle @
0a84291c
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef INCLUDED_ONLINEUPDATE_TYPES_HXX
#define INCLUDED_ONLINEUPDATE_TYPES_HXX
#include <string>
#if defined(_WIN32)
typedef
std
::
wstring
tstring
;
typedef
WCHAR
NS_tchar
;
#else
typedef
std
::
string
tstring
;
typedef
char
NS_tchar
;
#endif
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
onlineupdate/source/update/common/readstrings.h
Dosyayı görüntüle @
0a84291c
...
...
@@ -11,14 +11,9 @@
#ifdef _WIN32
# include <windows.h>
typedef
WCHAR
NS_tchar
;
#else
typedef
char
NS_tchar
;
#endif
#ifndef NULL
#define NULL 0
#endif
#include "types.hxx"
struct
StringTable
{
...
...
onlineupdate/source/update/updater/archivereader.h
Dosyayı görüntüle @
0a84291c
...
...
@@ -9,12 +9,7 @@
#include <stdio.h>
#include <onlineupdate/mar.h>
#ifdef _WIN32
typedef
WCHAR
NS_tchar
;
#else
typedef
char
NS_tchar
;
#endif
#include "types.hxx"
// This class provides an API to extract files from an update archive.
class
ArchiveReader
...
...
onlineupdate/source/update/updater/progressui.h
Dosyayı görüntüle @
0a84291c
...
...
@@ -8,12 +8,11 @@
#define PROGRESSUI_H__
#include "updatedefines.h"
#include "types.hxx"
#if defined(_WIN32)
typedef
WCHAR
NS_tchar
;
#define NS_main wmain
#else
typedef
char
NS_tchar
;
#define NS_main main
#endif
...
...
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