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.

42 lines
823 B

  1. //
  2. // state.h: Declares data, defines and struct types for user state code
  3. // module.
  4. //
  5. //
  6. #ifndef __STATE_H__
  7. #define __STATE_H__
  8. ///////////////////////////////////////////////////// INCLUDES
  9. ///////////////////////////////////////////////////// DEFINES
  10. ///////////////////////////////////////////////////// MACROS
  11. ///////////////////////////////////////////////////// TYPEDEFS
  12. typedef struct tagUSERSTATE
  13. {
  14. }
  15. CState, * LPState;
  16. ///////////////////////////////////////////////////// EXPORTED DATA
  17. ///////////////////////////////////////////////////// PUBLIC PROTOTYPES
  18. #ifdef DEBUG
  19. BOOL PUBLIC ProcessIniFile(void);
  20. BOOL PUBLIC CommitIniFile(void);
  21. #else
  22. #define ProcessIniFile()
  23. #define CommitIniFile()
  24. #endif
  25. #endif // __STATE_H__