Created
February 3, 2026 17:33
-
-
Save jonny-jhnson/30c5b67ddf1a3028394b748f5ee4aa1c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| typedef enum PRJ_NOTIFICATION | |
| { | |
| PRJ_NOTIFICATION_FILE_OPENED = 0x00000002, | |
| PRJ_NOTIFICATION_NEW_FILE_CREATED = 0x00000004, | |
| PRJ_NOTIFICATION_FILE_OVERWRITTEN = 0x00000008, | |
| PRJ_NOTIFICATION_PRE_DELETE = 0x00000010, | |
| PRJ_NOTIFICATION_PRE_RENAME = 0x00000020, | |
| PRJ_NOTIFICATION_PRE_SET_HARDLINK = 0x00000040, | |
| PRJ_NOTIFICATION_FILE_RENAMED = 0x00000080, | |
| PRJ_NOTIFICATION_HARDLINK_CREATED = 0x00000100, | |
| PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_NO_MODIFICATION = 0x00000200, | |
| PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_FILE_MODIFIED = 0x00000400, | |
| PRJ_NOTIFICATION_FILE_HANDLE_CLOSED_FILE_DELETED = 0x00000800, | |
| PRJ_NOTIFICATION_FILE_PRE_CONVERT_TO_FULL = 0x00001000, | |
| } PRJ_NOTIFICATION; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment