DSStruct: add stSize structure 83/241683/1
authorSooChan Lim <sc1.lim@samsung.com>
Wed, 29 Jul 2020 23:26:08 +0000 (08:26 +0900)
committerSung-Jin Park <sj76.park@samsung.com>
Thu, 20 Aug 2020 10:04:43 +0000 (19:04 +0900)
Change-Id: Ieaea009eac15b923540ce7d13a349dfdc72b428e

src/DSCore/DSStruct.h

index fb9aa51..01c997c 100644 (file)
@@ -7,6 +7,7 @@ namespace display_server
 {
 
 using stPosition = struct _stPosition;
+using stSize = struct _stSize;
 using stRect = struct _stRect;
 using stGeometry = struct _stGeometry;
 
@@ -16,6 +17,12 @@ struct _stPosition
        int y;
 };
 
+struct _stSize
+{
+       unsigned int w;
+       unsigned int h;
+};
+
 struct _stRect
 {
        int x;