diff --git a/subhook.c b/subhook.c index 00b3a73..8ea7d51 100644 --- a/subhook.c +++ b/subhook.c @@ -1,4 +1,5 @@ -/* Copyright (c) 2012-2018 Zeex +/* + * Copyright (c) 2012-2018 Zeex * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/subhook.h b/subhook.h index 7596050..bf5ae69 100644 --- a/subhook.h +++ b/subhook.h @@ -1,4 +1,5 @@ -/* Copyright (c) 2012-2018 Zeex +/* + * Copyright (c) 2012-2018 Zeex * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -101,9 +102,10 @@ typedef int (SUBHOOK_API *subhook_disasm_handler_t)( void *src, int *reloc_op_offset); -SUBHOOK_EXPORT subhook_t SUBHOOK_API subhook_new(void *src, - void *dst, - subhook_flags_t flags); +SUBHOOK_EXPORT subhook_t SUBHOOK_API subhook_new( + void *src, + void *dst, + subhook_flags_t flags); SUBHOOK_EXPORT void SUBHOOK_API subhook_free(subhook_t hook); SUBHOOK_EXPORT void *SUBHOOK_API subhook_get_src(subhook_t hook); @@ -114,14 +116,16 @@ SUBHOOK_EXPORT int SUBHOOK_API subhook_install(subhook_t hook); SUBHOOK_EXPORT int SUBHOOK_API subhook_is_installed(subhook_t hook); SUBHOOK_EXPORT int SUBHOOK_API subhook_remove(subhook_t hook); -/* Reads hook destination address from code. +/* + * Reads hook destination address from code. * - * This is useful when you don't know the address or want to check whether - * src is already hooked. + * This function may be useful when you don't know the address or want to + * check whether src is already hooked. */ SUBHOOK_EXPORT void *SUBHOOK_API subhook_read_dst(void *src); -/* Set a custom disassmbler function to use in place of the default one +/* + * Sets a custom disassmbler function to use in place of the default one * (subhook_disasm). * * The default function recognized a small st of x86 instructiosn commonly diff --git a/subhook_private.h b/subhook_private.h index ec0dcc0..9d54781 100644 --- a/subhook_private.h +++ b/subhook_private.h @@ -1,4 +1,5 @@ -/* Copyright (c) 2012-2018 Zeex +/* + * Copyright (c) 2012-2018 Zeex * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/subhook_unix.c b/subhook_unix.c index 1c5260d..31f927e 100644 --- a/subhook_unix.c +++ b/subhook_unix.c @@ -1,4 +1,5 @@ -/* Copyright (c) 2012-2018 Zeex +/* + * Copyright (c) 2012-2018 Zeex * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/subhook_windows.c b/subhook_windows.c index 13a514b..b1f0be6 100644 --- a/subhook_windows.c +++ b/subhook_windows.c @@ -1,4 +1,5 @@ -/* Copyright (c) 2012-2018 Zeex +/* + * Copyright (c) 2012-2018 Zeex * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/subhook_x86.c b/subhook_x86.c index d5eae84..88062c8 100644 --- a/subhook_x86.c +++ b/subhook_x86.c @@ -1,4 +1,5 @@ -/* Copyright (c) 2012-2018 Zeex +/* + * Copyright (c) 2012-2018 Zeex * All rights reserved. * * Redistribution and use in source and binary forms, with or without