Skip to content

Commit

Permalink
make return type int 32
Browse files Browse the repository at this point in the history
  • Loading branch information
qubka committed Feb 29, 2024
1 parent 005771f commit bba30b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/dynohook/ihook.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace dyno {
Post // callback will be executed after the original function
};

enum class ReturnAction : int8_t {
enum class ReturnAction : int32_t {
Ignored, // handler didn't take any action
Handled, // we did something, but real function should still be called
Override, // call real function, but use my return value
Expand Down

0 comments on commit bba30b3

Please sign in to comment.