NativeConstants.cs 255 B

12345678910111213
  1. namespace PaintDotNet.SystemLayer.GpcWrapper
  2. {
  3. internal static class NativeConstants
  4. {
  5. public enum gpc_op
  6. {
  7. GPC_DIFF = 0,
  8. GPC_INT = 1,
  9. GPC_XOR = 2,
  10. GPC_UNION = 3
  11. }
  12. }
  13. }