diff options
Diffstat (limited to 'source/include/smb.h')
-rw-r--r-- | source/include/smb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/include/smb.h b/source/include/smb.h index e464809fa02..401459becc2 100644 --- a/source/include/smb.h +++ b/source/include/smb.h @@ -1601,9 +1601,9 @@ struct share_ops { /* each implementation of the shared memory code needs to support the following operations */ struct shmem_ops { - BOOL (*close)( void ); - int (*alloc)(int ); - BOOL (*free)(int ); + BOOL (*shm_close)( void ); + int (*shm_alloc)(int ); + BOOL (*shm_free)(int ); int (*get_userdef_off)(void); void *(*offset2addr)(int ); int (*addr2offset)(void *addr); |