Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
627 B

  1. //Copyright (c) Microsoft Corporation. All rights reserved.
  2. #ifndef _TlntDynamicArray_h_
  3. #define _TlntDynamicArray_h_
  4. #ifdef __cplusplus
  5. extern "C"
  6. {
  7. #endif
  8. typedef struct __CLIENT_LIST
  9. {
  10. struct __CLIENT_LIST *next;
  11. PVOID some_class_pointer;
  12. }
  13. CLIENT_LIST;
  14. extern CLIENT_LIST *client_list_head;
  15. extern HANDLE client_list_mutex;
  16. extern BOOL client_list_Add( PVOID pvItem );
  17. extern PVOID client_list_Get( int nItem );
  18. extern BOOL client_list_RemoveElem(PVOID tElem);
  19. extern int client_list_Count( void );
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23. #endif _TlntDynamicArray_h_