~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzleclient/password.h

Merged fix-warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#endif
32
32
 
33
33
  struct rand_struct {
34
 
    unsigned long seed1,seed2,max_value;
 
34
    uint64_t seed1,seed2,max_value;
35
35
    double max_value_dbl;
36
36
  };
37
37
 
38
38
 
39
 
  void drizzleclient_drizzleclient_randominit(struct rand_struct *, uint32_t seed1, uint32_t seed2);
 
39
  void drizzleclient_randominit(struct rand_struct *, uint64_t seed1,
 
40
                                uint64_t seed2);
40
41
  double drizzleclient_my_rnd(struct rand_struct *);
41
42
  void drizzleclient_create_random_string(char *to, unsigned int length,
42
43
                            struct rand_struct *rand_st);