Browse Source

Define ulonglong type

tags/v2.4.2
falkTX 2 years ago
parent
commit
9e14f2dc08
2 changed files with 3 additions and 2 deletions
  1. +1
    -1
      .github/workflows/build.yml
  2. +2
    -1
      source/includes/CarlaDefines.h

+ 1
- 1
.github/workflows/build.yml View File

@@ -99,7 +99,7 @@ jobs:
run: make posix32 -j $(nproc)

ubuntu-mingw-win32:
runs-on: ubuntu-20.04
runs-on: ubuntu-18.04
env:
CC: i686-w64-mingw32-gcc
CXX: i686-w64-mingw32-g++


+ 2
- 1
source/includes/CarlaDefines.h View File

@@ -317,8 +317,9 @@ private: \

/* Useful typedefs */
typedef unsigned char uchar;
typedef unsigned long int ulong;
typedef unsigned short int ushort;
typedef unsigned int uint;
typedef unsigned long int ulong;
typedef unsigned long long int ulonglong;

#endif /* CARLA_DEFINES_H_INCLUDED */

Loading…
Cancel
Save