mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 06:22:16 +08:00
17 lines
204 B
C
17 lines
204 B
C
//
|
|
// Role.h
|
|
// test
|
|
//
|
|
// Created by Lea Anthony on 24/10/21.
|
|
//
|
|
|
|
#ifndef Role_h
|
|
#define Role_h
|
|
|
|
typedef int Role;
|
|
|
|
static const Role AppMenu = 1;
|
|
static const Role EditMenu = 2;
|
|
|
|
#endif /* Role_h */
|